home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / difutl27.zip / difutl27 / regex.c < prev    next >
C/C++ Source or Header  |  1994-10-01  |  171KB  |  5,249 lines

  1. /* Extended regular expression matching and search library,
  2.    version 0.12.
  3.    (Implements POSIX draft P10003.2/D11.2, except for
  4.    internationalization features.)
  5.  
  6.    Copyright (C) 1993, 1994 Free Software Foundation, Inc.
  7.  
  8.    This program is free software; you can redistribute it and/or modify
  9.    it under the terms of the GNU General Public License as published by
  10.    the Free Software Foundation; either version 2, or (at your option)
  11.    any later version.
  12.  
  13.    This program is distributed in the hope that it will be useful,
  14.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.    GNU General Public License for more details.
  17.  
  18.    You should have received a copy of the GNU General Public License
  19.    along with this program; if not, write to the Free Software
  20.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  21.  
  22. /* AIX requires this to be the first thing in the file. */
  23. #if defined (_AIX) && !defined (REGEX_MALLOC)
  24.   #pragma alloca
  25. #endif
  26.  
  27. #define _GNU_SOURCE
  28.  
  29. #ifdef HAVE_CONFIG_H
  30. #include <config.h>
  31. #endif
  32.  
  33. /* We need this for `regex.h', and perhaps for the Emacs include files.  */
  34. #include <sys/types.h>
  35.  
  36. /* The `emacs' switch turns on certain matching commands
  37.    that make sense only in Emacs. */
  38. #ifdef emacs
  39.  
  40. #include "lisp.h"
  41. #include "buffer.h"
  42. #include "syntax.h"
  43.  
  44. /* Emacs uses `NULL' as a predicate.  */
  45. #undef NULL
  46.  
  47. #else  /* not emacs */
  48.  
  49. #ifdef STDC_HEADERS
  50. #include <stdlib.h>
  51. #else
  52. char *malloc ();
  53. char *realloc ();
  54. #endif
  55.  
  56.  
  57. /* We used to test for `BSTRING' here, but only GCC and Emacs define
  58.    `BSTRING', as far as I know, and neither of them use this code.  */
  59. #ifndef INHIBIT_STRING_HEADER
  60. #if HAVE_STRING_H || STDC_HEADERS
  61. #include <string.h>
  62. #ifndef bcmp
  63. #define bcmp(s1, s2, n)    memcmp ((s1), (s2), (n))
  64. #endif
  65. #ifndef bcopy
  66. #define bcopy(s, d, n)    memcpy ((d), (s), (n))
  67. #endif
  68. #ifndef bzero
  69. #define bzero(s, n)    memset ((s), 0, (n))
  70. #endif
  71. #else
  72. #include <strings.h>
  73. #endif
  74. #endif
  75.  
  76. /* Define the syntax stuff for \<, \>, etc.  */
  77.  
  78. /* This must be nonzero for the wordchar and notwordchar pattern
  79.    commands in re_match_2.  */
  80. #ifndef Sword 
  81. #define Sword 1
  82. #endif
  83.  
  84. #ifdef SYNTAX_TABLE
  85.  
  86. extern char *re_syntax_table;
  87.  
  88. #else /* not SYNTAX_TABLE */
  89.  
  90. /* How many characters in the character set.  */
  91. #define CHAR_SET_SIZE 256
  92.  
  93. static char re_syntax_table[CHAR_SET_SIZE];
  94.  
  95. static void
  96. init_syntax_once ()
  97. {
  98.    register int c;
  99.    static int done = 0;
  100.  
  101.    if (done)
  102.      return;
  103.  
  104.    bzero (re_syntax_table, sizeof re_syntax_table);
  105.  
  106.    for (c = 'a'; c <= 'z'; c++)
  107.      re_syntax_table[c] = Sword;
  108.  
  109.    for (c = 'A'; c <= 'Z'; c++)
  110.      re_syntax_table[c] = Sword;
  111.  
  112.    for (c = '0'; c <= '9'; c++)
  113.      re_syntax_table[c] = Sword;
  114.  
  115.    re_syntax_table['_'] = Sword;
  116.  
  117.    done = 1;
  118. }
  119.  
  120. #endif /* not SYNTAX_TABLE */
  121.  
  122. #define SYNTAX(c) re_syntax_table[c]
  123.  
  124. #endif /* not emacs */
  125.  
  126. /* Get the interface, including the syntax bits.  */
  127. #include "regex.h"
  128.  
  129. /* isalpha etc. are used for the character classes.  */
  130. #include <ctype.h>
  131.  
  132. /* Jim Meyering writes:
  133.  
  134.    "... Some ctype macros are valid only for character codes that
  135.    isascii says are ASCII (SGI's IRIX-4.0.5 is one such system --when
  136.    using /bin/cc or gcc but without giving an ansi option).  So, all
  137.    ctype uses should be through macros like ISPRINT...  If
  138.    STDC_HEADERS is defined, then autoconf has verified that the ctype
  139.    macros don't need to be guarded with references to isascii. ...
  140.    Defining isascii to 1 should let any compiler worth its salt
  141.    eliminate the && through constant folding."  */
  142.  
  143. #if defined (STDC_HEADERS) || (!defined (isascii) && !defined (HAVE_ISASCII))
  144. #define ISASCII(c) 1
  145. #else
  146. #define ISASCII(c) isascii(c)
  147. #endif
  148.  
  149. #ifdef isblank
  150. #define ISBLANK(c) (ISASCII (c) && isblank (c))
  151. #else
  152. #define ISBLANK(c) ((c) == ' ' || (c) == '\t')
  153. #endif
  154. #ifdef isgraph
  155. #define ISGRAPH(c) (ISASCII (c) && isgraph (c))
  156. #else
  157. #define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c))
  158. #endif
  159.  
  160. #define ISPRINT(c) (ISASCII (c) && isprint (c))
  161. #define ISDIGIT(c) (ISASCII (c) && isdigit (c))
  162. #define ISALNUM(c) (ISASCII (c) && isalnum (c))
  163. #define ISALPHA(c) (ISASCII (c) && isalpha (c))
  164. #define ISCNTRL(c) (ISASCII (c) && iscntrl (c))
  165. #define ISLOWER(c) (ISASCII (c) && islower (c))
  166. #define ISPUNCT(c) (ISASCII (c) && ispunct (c))
  167. #define ISSPACE(c) (ISASCII (c) && isspace (c))
  168. #define ISUPPER(c) (ISASCII (c) && isupper (c))
  169. #define ISXDIGIT(c) (ISASCII (c) && isxdigit (c))
  170.  
  171. #ifndef NULL
  172. #define NULL 0
  173. #endif
  174.  
  175. /* We remove any previous definition of `SIGN_EXTEND_CHAR',
  176.    since ours (we hope) works properly with all combinations of
  177.    machines, compilers, `char' and `unsigned char' argument types.
  178.    (Per Bothner suggested the basic approach.)  */
  179. #undef SIGN_EXTEND_CHAR
  180. #if __STDC__
  181. #define SIGN_EXTEND_CHAR(c) ((signed char) (c))
  182. #else  /* not __STDC__ */
  183. /* As in Harbison and Steele.  */
  184. #define SIGN_EXTEND_CHAR(c) ((((unsigned char) (c)) ^ 128) - 128)
  185. #endif
  186.  
  187. /* Should we use malloc or alloca?  If REGEX_MALLOC is not defined, we
  188.    use `alloca' instead of `malloc'.  This is because using malloc in
  189.    re_search* or re_match* could cause memory leaks when C-g is used in
  190.    Emacs; also, malloc is slower and causes storage fragmentation.  On
  191.    the other hand, malloc is more portable, and easier to debug.  
  192.    
  193.    Because we sometimes use alloca, some routines have to be macros,
  194.    not functions -- `alloca'-allocated space disappears at the end of the
  195.    function it is called in.  */
  196.  
  197. #ifdef REGEX_MALLOC
  198.  
  199. #define REGEX_ALLOCATE malloc
  200. #define REGEX_REALLOCATE(source, osize, nsize) realloc (source, nsize)
  201.  
  202. #else /* not REGEX_MALLOC  */
  203.  
  204. /* Emacs already defines alloca, sometimes.  */
  205. #ifndef alloca
  206.  
  207. /* Make alloca work the best possible way.  */
  208. #ifdef __GNUC__
  209. #define alloca __builtin_alloca
  210. #else /* not __GNUC__ */
  211. #if HAVE_ALLOCA_H
  212. #include <alloca.h>
  213. #else /* not __GNUC__ or HAVE_ALLOCA_H */
  214. #ifndef _AIX /* Already did AIX, up at the top.  */
  215. char *alloca ();
  216. #endif /* not _AIX */
  217. #endif /* not HAVE_ALLOCA_H */ 
  218. #endif /* not __GNUC__ */
  219.  
  220. #endif /* not alloca */
  221.  
  222. #define REGEX_ALLOCATE alloca
  223.  
  224. /* Assumes a `char *destination' variable.  */
  225. #define REGEX_REALLOCATE(source, osize, nsize)                \
  226.   (destination = (char *) alloca (nsize),                \
  227.    bcopy (source, destination, osize),                    \
  228.    destination)
  229.  
  230. #endif /* not REGEX_MALLOC */
  231.  
  232.  
  233. /* True if `size1' is non-NULL and PTR is pointing anywhere inside
  234.    `string1' or just past its end.  This works if PTR is NULL, which is
  235.    a good thing.  */
  236. #define FIRST_STRING_P(ptr)                     \
  237.   (size1 && string1 <= (ptr) && (ptr) <= string1 + size1)
  238.  
  239. /* (Re)Allocate N items of type T using malloc, or fail.  */
  240. #define TALLOC(n, t) ((t *) malloc ((n) * sizeof (t)))
  241. #define RETALLOC(addr, n, t) ((addr) = (t *) realloc (addr, (n) * sizeof (t)))
  242. #define RETALLOC_IF(addr, n, t) \
  243.   if (addr) RETALLOC((addr), (n), t); else (addr) = TALLOC ((n), t)
  244. #define REGEX_TALLOC(n, t) ((t *) REGEX_ALLOCATE ((n) * sizeof (t)))
  245.  
  246. #define BYTEWIDTH 8 /* In bits.  */
  247.  
  248. #define STREQ(s1, s2) ((strcmp (s1, s2) == 0))
  249.  
  250. #undef MAX
  251. #undef MIN
  252. #define MAX(a, b) ((a) > (b) ? (a) : (b))
  253. #define MIN(a, b) ((a) < (b) ? (a) : (b))
  254.  
  255. typedef char boolean;
  256. #define false 0
  257. #define true 1
  258.  
  259. static int re_match_2_internal ();
  260.  
  261. /* These are the command codes that appear in compiled regular
  262.    expressions.  Some opcodes are followed by argument bytes.  A
  263.    command code can specify any interpretation whatsoever for its
  264.    arguments.  Zero bytes may appear in the compiled regular expression.
  265.  
  266.    The value of `exactn' is needed in search.c (search_buffer) in Emacs.
  267.    So regex.h defines a symbol `RE_EXACTN_VALUE' to be 1; the value of
  268.    `exactn' we use here must also be 1.  */
  269.  
  270. typedef enum
  271. {
  272.   no_op = 0,
  273.  
  274.         /* Followed by one byte giving n, then by n literal bytes.  */
  275.   exactn = 1,
  276.  
  277.         /* Matches any (more or less) character.  */
  278.   anychar,
  279.  
  280.         /* Matches any one char belonging to specified set.  First
  281.            following byte is number of bitmap bytes.  Then come bytes
  282.            for a bitmap saying which chars are in.  Bits in each byte
  283.            are ordered low-bit-first.  A character is in the set if its
  284.            bit is 1.  A character too large to have a bit in the map is
  285.            automatically not in the set.  */
  286.   charset,
  287.  
  288.         /* Same parameters as charset, but match any character that is
  289.            not one of those specified.  */
  290.   charset_not,
  291.  
  292.         /* Start remembering the text that is matched, for storing in a
  293.            register.  Followed by one byte with the register number, in
  294.            the range 0 to one less than the pattern buffer's re_nsub
  295.            field.  Then followed by one byte with the number of groups
  296.            inner to this one.  (This last has to be part of the
  297.            start_memory only because we need it in the on_failure_jump
  298.            of re_match_2.)  */
  299.   start_memory,
  300.  
  301.         /* Stop remembering the text that is matched and store it in a
  302.            memory register.  Followed by one byte with the register
  303.            number, in the range 0 to one less than `re_nsub' in the
  304.            pattern buffer, and one byte with the number of inner groups,
  305.            just like `start_memory'.  (We need the number of inner
  306.            groups here because we don't have any easy way of finding the
  307.            corresponding start_memory when we're at a stop_memory.)  */
  308.   stop_memory,
  309.  
  310.         /* Match a duplicate of something remembered. Followed by one
  311.            byte containing the register number.  */
  312.   duplicate,
  313.  
  314.         /* Fail unless at beginning of line.  */
  315.   begline,
  316.  
  317.         /* Fail unless at end of line.  */
  318.   endline,
  319.  
  320.         /* Succeeds if at beginning of buffer (if emacs) or at beginning
  321.            of string to be matched (if not).  */
  322.   begbuf,
  323.  
  324.         /* Analogously, for end of buffer/string.  */
  325.   endbuf,
  326.  
  327.         /* Followed by two byte relative address to which to jump.  */
  328.   jump, 
  329.  
  330.     /* Same as jump, but marks the end of an alternative.  */
  331.   jump_past_alt,
  332.  
  333.         /* Followed by two-byte relative address of place to resume at
  334.            in case of failure.  */
  335.   on_failure_jump,
  336.     
  337.         /* Like on_failure_jump, but pushes a placeholder instead of the
  338.            current string position when executed.  */
  339.   on_failure_keep_string_jump,
  340.   
  341.         /* Throw away latest failure point and then jump to following
  342.            two-byte relative address.  */
  343.   pop_failure_jump,
  344.  
  345.         /* Change to pop_failure_jump if know won't have to backtrack to
  346.            match; otherwise change to jump.  This is used to jump
  347.            back to the beginning of a repeat.  If what follows this jump
  348.            clearly won't match what the repeat does, such that we can be
  349.            sure that there is no use backtracking out of repetitions
  350.            already matched, then we change it to a pop_failure_jump.
  351.            Followed by two-byte address.  */
  352.   maybe_pop_jump,
  353.  
  354.         /* Jump to following two-byte address, and push a dummy failure
  355.            point. This failure point will be thrown away if an attempt
  356.            is made to use it for a failure.  A `+' construct makes this
  357.            before the first repeat.  Also used as an intermediary kind
  358.            of jump when compiling an alternative.  */
  359.   dummy_failure_jump,
  360.  
  361.     /* Push a dummy failure point and continue.  Used at the end of
  362.        alternatives.  */
  363.   push_dummy_failure,
  364.  
  365.         /* Followed by two-byte relative address and two-byte number n.
  366.            After matching N times, jump to the address upon failure.  */
  367.   succeed_n,
  368.  
  369.         /* Followed by two-byte relative address, and two-byte number n.
  370.            Jump to the address N times, then fail.  */
  371.   jump_n,
  372.  
  373.         /* Set the following two-byte relative address to the
  374.            subsequent two-byte number.  The address *includes* the two
  375.            bytes of number.  */
  376.   set_number_at,
  377.  
  378.   wordchar,    /* Matches any word-constituent character.  */
  379.   notwordchar,    /* Matches any char that is not a word-constituent.  */
  380.  
  381.   wordbeg,    /* Succeeds if at word beginning.  */
  382.   wordend,    /* Succeeds if at word end.  */
  383.  
  384.   wordbound,    /* Succeeds if at a word boundary.  */
  385.   notwordbound    /* Succeeds if not at a word boundary.  */
  386.  
  387. #ifdef emacs
  388.   ,before_dot,    /* Succeeds if before point.  */
  389.   at_dot,    /* Succeeds if at point.  */
  390.   after_dot,    /* Succeeds if after point.  */
  391.  
  392.     /* Matches any character whose syntax is specified.  Followed by
  393.            a byte which contains a syntax code, e.g., Sword.  */
  394.   syntaxspec,
  395.  
  396.     /* Matches any character whose syntax is not that specified.  */
  397.   notsyntaxspec
  398. #endif /* emacs */
  399. } re_opcode_t;
  400.  
  401. /* Common operations on the compiled pattern.  */
  402.  
  403. /* Store NUMBER in two contiguous bytes starting at DESTINATION.  */
  404.  
  405. #define STORE_NUMBER(destination, number)                \
  406.   do {                                    \
  407.     (destination)[0] = (number) & 0377;                    \
  408.     (destination)[1] = (number) >> 8;                    \
  409.   } while (0)
  410.  
  411. /* Same as STORE_NUMBER, except increment DESTINATION to
  412.    the byte after where the number is stored.  Therefore, DESTINATION
  413.    must be an lvalue.  */
  414.  
  415. #define STORE_NUMBER_AND_INCR(destination, number)            \
  416.   do {                                    \
  417.     STORE_NUMBER (destination, number);                    \
  418.     (destination) += 2;                            \
  419.   } while (0)
  420.  
  421. /* Put into DESTINATION a number stored in two contiguous bytes starting
  422.    at SOURCE.  */
  423.  
  424. #define EXTRACT_NUMBER(destination, source)                \
  425.   do {                                    \
  426.     (destination) = *(source) & 0377;                    \
  427.     (destination) += SIGN_EXTEND_CHAR (*((source) + 1)) << 8;        \
  428.   } while (0)
  429.  
  430. #ifdef DEBUG
  431. static void
  432. extract_number (dest, source)
  433.     int *dest;
  434.     unsigned char *source;
  435. {
  436.   int temp = SIGN_EXTEND_CHAR (*(source + 1)); 
  437.   *dest = *source & 0377;
  438.   *dest += temp << 8;
  439. }
  440.  
  441. #ifndef EXTRACT_MACROS /* To debug the macros.  */
  442. #undef EXTRACT_NUMBER
  443. #define EXTRACT_NUMBER(dest, src) extract_number (&dest, src)
  444. #endif /* not EXTRACT_MACROS */
  445.  
  446. #endif /* DEBUG */
  447.  
  448. /* Same as EXTRACT_NUMBER, except increment SOURCE to after the number.
  449.    SOURCE must be an lvalue.  */
  450.  
  451. #define EXTRACT_NUMBER_AND_INCR(destination, source)            \
  452.   do {                                    \
  453.     EXTRACT_NUMBER (destination, source);                \
  454.     (source) += 2;                             \
  455.   } while (0)
  456.  
  457. #ifdef DEBUG
  458. static void
  459. extract_number_and_incr (destination, source)
  460.     int *destination;
  461.     unsigned char **source;
  462.   extract_number (destination, *source);
  463.   *source += 2;
  464. }
  465.  
  466. #ifndef EXTRACT_MACROS
  467. #undef EXTRACT_NUMBER_AND_INCR
  468. #define EXTRACT_NUMBER_AND_INCR(dest, src) \
  469.   extract_number_and_incr (&dest, &src)
  470. #endif /* not EXTRACT_MACROS */
  471.  
  472. #endif /* DEBUG */
  473.  
  474. /* If DEBUG is defined, Regex prints many voluminous messages about what
  475.    it is doing (if the variable `debug' is nonzero).  If linked with the
  476.    main program in `iregex.c', you can enter patterns and strings
  477.    interactively.  And if linked with the main program in `main.c' and
  478.    the other test files, you can run the already-written tests.  */
  479.  
  480. #ifdef DEBUG
  481.  
  482. /* We use standard I/O for debugging.  */
  483. #include <stdio.h>
  484.  
  485. /* It is useful to test things that ``must'' be true when debugging.  */
  486. #include <assert.h>
  487.  
  488. static int debug = 0;
  489.  
  490. #define DEBUG_STATEMENT(e) e
  491. #define DEBUG_PRINT1(x) if (debug) printf (x)
  492. #define DEBUG_PRINT2(x1, x2) if (debug) printf (x1, x2)
  493. #define DEBUG_PRINT3(x1, x2, x3) if (debug) printf (x1, x2, x3)
  494. #define DEBUG_PRINT4(x1, x2, x3, x4) if (debug) printf (x1, x2, x3, x4)
  495. #define DEBUG_PRINT_COMPILED_PATTERN(p, s, e)                 \
  496.   if (debug) print_partial_compiled_pattern (s, e)
  497. #define DEBUG_PRINT_DOUBLE_STRING(w, s1, sz1, s2, sz2)            \
  498.   if (debug) print_double_string (w, s1, sz1, s2, sz2)
  499.  
  500.  
  501. extern void printchar ();
  502.  
  503. /* Print the fastmap in human-readable form.  */
  504.  
  505. void
  506. print_fastmap (fastmap)
  507.     char *fastmap;
  508. {
  509.   unsigned was_a_range = 0;
  510.   unsigned i = 0;  
  511.   
  512.   while (i < (1 << BYTEWIDTH))
  513.     {
  514.       if (fastmap[i++])
  515.     {
  516.       was_a_range = 0;
  517.           printchar (i - 1);
  518.           while (i < (1 << BYTEWIDTH)  &&  fastmap[i])
  519.             {
  520.               was_a_range = 1;
  521.               i++;
  522.             }
  523.       if (was_a_range)
  524.             {
  525.               printf ("-");
  526.               printchar (i - 1);
  527.             }
  528.         }
  529.     }
  530.   putchar ('\n'); 
  531. }
  532.  
  533.  
  534. /* Print a compiled pattern string in human-readable form, starting at
  535.    the START pointer into it and ending just before the pointer END.  */
  536.  
  537. void
  538. print_partial_compiled_pattern (start, end)
  539.     unsigned char *start;
  540.     unsigned char *end;
  541. {
  542.   int mcnt, mcnt2;
  543.   unsigned char *p = start;
  544.   unsigned char *pend = end;
  545.  
  546.   if (start == NULL)
  547.     {
  548.       printf ("(null)\n");
  549.       return;
  550.     }
  551.     
  552.   /* Loop over pattern commands.  */
  553.   while (p < pend)
  554.     {
  555.       printf ("%d:\t", p - start);
  556.  
  557.       switch ((re_opcode_t) *p++)
  558.     {
  559.         case no_op:
  560.           printf ("/no_op");
  561.           break;
  562.  
  563.     case exactn:
  564.       mcnt = *p++;
  565.           printf ("/exactn/%d", mcnt);
  566.           do
  567.         {
  568.               putchar ('/');
  569.           printchar (*p++);
  570.             }
  571.           while (--mcnt);
  572.           break;
  573.  
  574.     case start_memory:
  575.           mcnt = *p++;
  576.           printf ("/start_memory/%d/%d", mcnt, *p++);
  577.           break;
  578.  
  579.     case stop_memory:
  580.           mcnt = *p++;
  581.       printf ("/stop_memory/%d/%d", mcnt, *p++);
  582.           break;
  583.  
  584.     case duplicate:
  585.       printf ("/duplicate/%d", *p++);
  586.       break;
  587.  
  588.     case anychar:
  589.       printf ("/anychar");
  590.       break;
  591.  
  592.     case charset:
  593.         case charset_not:
  594.           {
  595.             register int c, last = -100;
  596.         register int in_range = 0;
  597.  
  598.         printf ("/charset [%s",
  599.                 (re_opcode_t) *(p - 1) == charset_not ? "^" : "");
  600.             
  601.             assert (p + *p < pend);
  602.  
  603.             for (c = 0; c < 256; c++)
  604.           if (c / 8 < *p
  605.           && (p[1 + (c/8)] & (1 << (c % 8))))
  606.         {
  607.           /* Are we starting a range?  */
  608.           if (last + 1 == c && ! in_range)
  609.             {
  610.               putchar ('-');
  611.               in_range = 1;
  612.             }
  613.           /* Have we broken a range?  */
  614.           else if (last + 1 != c && in_range)
  615.               {
  616.               printchar (last);
  617.               in_range = 0;
  618.             }
  619.                 
  620.           if (! in_range)
  621.             printchar (c);
  622.  
  623.           last = c;
  624.               }
  625.  
  626.         if (in_range)
  627.           printchar (last);
  628.  
  629.         putchar (']');
  630.  
  631.         p += 1 + *p;
  632.       }
  633.       break;
  634.  
  635.     case begline:
  636.       printf ("/begline");
  637.           break;
  638.  
  639.     case endline:
  640.           printf ("/endline");
  641.           break;
  642.  
  643.     case on_failure_jump:
  644.           extract_number_and_incr (&mcnt, &p);
  645.         printf ("/on_failure_jump to %d", p + mcnt - start);
  646.           break;
  647.  
  648.     case on_failure_keep_string_jump:
  649.           extract_number_and_incr (&mcnt, &p);
  650.         printf ("/on_failure_keep_string_jump to %d", p + mcnt - start);
  651.           break;
  652.  
  653.     case dummy_failure_jump:
  654.           extract_number_and_incr (&mcnt, &p);
  655.         printf ("/dummy_failure_jump to %d", p + mcnt - start);
  656.           break;
  657.  
  658.     case push_dummy_failure:
  659.           printf ("/push_dummy_failure");
  660.           break;
  661.           
  662.         case maybe_pop_jump:
  663.           extract_number_and_incr (&mcnt, &p);
  664.         printf ("/maybe_pop_jump to %d", p + mcnt - start);
  665.       break;
  666.  
  667.         case pop_failure_jump:
  668.       extract_number_and_incr (&mcnt, &p);
  669.         printf ("/pop_failure_jump to %d", p + mcnt - start);
  670.       break;          
  671.           
  672.         case jump_past_alt:
  673.       extract_number_and_incr (&mcnt, &p);
  674.         printf ("/jump_past_alt to %d", p + mcnt - start);
  675.       break;          
  676.           
  677.         case jump:
  678.       extract_number_and_incr (&mcnt, &p);
  679.         printf ("/jump to %d", p + mcnt - start);
  680.       break;
  681.  
  682.         case succeed_n: 
  683.           extract_number_and_incr (&mcnt, &p);
  684.           extract_number_and_incr (&mcnt2, &p);
  685.       printf ("/succeed_n to %d, %d times", p + mcnt - start, mcnt2);
  686.           break;
  687.         
  688.         case jump_n: 
  689.           extract_number_and_incr (&mcnt, &p);
  690.           extract_number_and_incr (&mcnt2, &p);
  691.       printf ("/jump_n to %d, %d times", p + mcnt - start, mcnt2);
  692.           break;
  693.         
  694.         case set_number_at: 
  695.           extract_number_and_incr (&mcnt, &p);
  696.           extract_number_and_incr (&mcnt2, &p);
  697.       printf ("/set_number_at location %d to %d", p + mcnt - start, mcnt2);
  698.           break;
  699.         
  700.         case wordbound:
  701.       printf ("/wordbound");
  702.       break;
  703.  
  704.     case notwordbound:
  705.       printf ("/notwordbound");
  706.           break;
  707.  
  708.     case wordbeg:
  709.       printf ("/wordbeg");
  710.       break;
  711.           
  712.     case wordend:
  713.       printf ("/wordend");
  714.           
  715. #ifdef emacs
  716.     case before_dot:
  717.       printf ("/before_dot");
  718.           break;
  719.  
  720.     case at_dot:
  721.       printf ("/at_dot");
  722.           break;
  723.  
  724.     case after_dot:
  725.       printf ("/after_dot");
  726.           break;
  727.  
  728.     case syntaxspec:
  729.           printf ("/syntaxspec");
  730.       mcnt = *p++;
  731.       printf ("/%d", mcnt);
  732.           break;
  733.       
  734.     case notsyntaxspec:
  735.           printf ("/notsyntaxspec");
  736.       mcnt = *p++;
  737.       printf ("/%d", mcnt);
  738.       break;
  739. #endif /* emacs */
  740.  
  741.     case wordchar:
  742.       printf ("/wordchar");
  743.           break;
  744.       
  745.     case notwordchar:
  746.       printf ("/notwordchar");
  747.           break;
  748.  
  749.     case begbuf:
  750.       printf ("/begbuf");
  751.           break;
  752.  
  753.     case endbuf:
  754.       printf ("/endbuf");
  755.           break;
  756.  
  757.         default:
  758.           printf ("?%d", *(p-1));
  759.     }
  760.  
  761.       putchar ('\n');
  762.     }
  763.  
  764.   printf ("%d:\tend of pattern.\n", p - start);
  765. }
  766.  
  767.  
  768. void
  769. print_compiled_pattern (bufp)
  770.     struct re_pattern_buffer *bufp;
  771. {
  772.   unsigned char *buffer = bufp->buffer;
  773.  
  774.   print_partial_compiled_pattern (buffer, buffer + bufp->used);
  775.   printf ("%d bytes used/%d bytes allocated.\n", bufp->used, bufp->allocated);
  776.  
  777.   if (bufp->fastmap_accurate && bufp->fastmap)
  778.     {
  779.       printf ("fastmap: ");
  780.       print_fastmap (bufp->fastmap);
  781.     }
  782.  
  783.   printf ("re_nsub: %d\t", bufp->re_nsub);
  784.   printf ("regs_alloc: %d\t", bufp->regs_allocated);
  785.   printf ("can_be_null: %d\t", bufp->can_be_null);
  786.   printf ("newline_anchor: %d\n", bufp->newline_anchor);
  787.   printf ("no_sub: %d\t", bufp->no_sub);
  788.   printf ("not_bol: %d\t", bufp->not_bol);
  789.   printf ("not_eol: %d\t", bufp->not_eol);
  790.   printf ("syntax: %d\n", bufp->syntax);
  791.   /* Perhaps we should print the translate table?  */
  792. }
  793.  
  794.  
  795. void
  796. print_double_string (where, string1, size1, string2, size2)
  797.     const char *where;
  798.     const char *string1;
  799.     const char *string2;
  800.     int size1;
  801.     int size2;
  802. {
  803.   unsigned this_char;
  804.   
  805.   if (where == NULL)
  806.     printf ("(null)");
  807.   else
  808.     {
  809.       if (FIRST_STRING_P (where))
  810.         {
  811.           for (this_char = where - string1; this_char < size1; this_char++)
  812.             printchar (string1[this_char]);
  813.  
  814.           where = string2;    
  815.         }
  816.  
  817.       for (this_char = where - string2; this_char < size2; this_char++)
  818.         printchar (string2[this_char]);
  819.     }
  820. }
  821.  
  822. #else /* not DEBUG */
  823.  
  824. #undef assert
  825. #define assert(e)
  826.  
  827. #define DEBUG_STATEMENT(e)
  828. #define DEBUG_PRINT1(x)
  829. #define DEBUG_PRINT2(x1, x2)
  830. #define DEBUG_PRINT3(x1, x2, x3)
  831. #define DEBUG_PRINT4(x1, x2, x3, x4)
  832. #define DEBUG_PRINT_COMPILED_PATTERN(p, s, e)
  833. #define DEBUG_PRINT_DOUBLE_STRING(w, s1, sz1, s2, sz2)
  834.  
  835. #endif /* not DEBUG */
  836.  
  837. /* Set by `re_set_syntax' to the current regexp syntax to recognize.  Can
  838.    also be assigned to arbitrarily: each pattern buffer stores its own
  839.    syntax, so it can be changed between regex compilations.  */
  840. reg_syntax_t re_syntax_options = RE_SYNTAX_EMACS;
  841.  
  842.  
  843. /* Specify the precise syntax of regexps for compilation.  This provides
  844.    for compatibility for various utilities which historically have
  845.    different, incompatible syntaxes.
  846.  
  847.    The argument SYNTAX is a bit mask comprised of the various bits
  848.    defined in regex.h.  We return the old syntax.  */
  849.  
  850. reg_syntax_t
  851. re_set_syntax (syntax)
  852.     reg_syntax_t syntax;
  853. {
  854.   reg_syntax_t ret = re_syntax_options;
  855.   
  856.   re_syntax_options = syntax;
  857.   return ret;
  858. }
  859.  
  860. /* This table gives an error message for each of the error codes listed
  861.    in regex.h.  Obviously the order here has to be same as there.  */
  862.  
  863. static const char *re_error_msg[] =
  864.   { NULL,                    /* REG_NOERROR */
  865.     "No match",                    /* REG_NOMATCH */
  866.     "Invalid regular expression",        /* REG_BADPAT */
  867.     "Invalid collation character",        /* REG_ECOLLATE */
  868.     "Invalid character class name",        /* REG_ECTYPE */
  869.     "Trailing backslash",            /* REG_EESCAPE */
  870.     "Invalid back reference",            /* REG_ESUBREG */
  871.     "Unmatched [ or [^",            /* REG_EBRACK */
  872.     "Unmatched ( or \\(",            /* REG_EPAREN */
  873.     "Unmatched \\{",                /* REG_EBRACE */
  874.     "Invalid content of \\{\\}",        /* REG_BADBR */
  875.     "Invalid range end",            /* REG_ERANGE */
  876.     "Memory exhausted",                /* REG_ESPACE */
  877.     "Invalid preceding regular expression",    /* REG_BADRPT */
  878.     "Premature end of regular expression",    /* REG_EEND */
  879.     "Regular expression too big",        /* REG_ESIZE */
  880.     "Unmatched ) or \\)",            /* REG_ERPAREN */
  881.   };
  882.  
  883. /* Avoiding alloca during matching, to placate r_alloc.  */
  884.  
  885. /* Define MATCH_MAY_ALLOCATE unless we need to make sure that the
  886.    searching and matching functions should not call alloca.  On some
  887.    systems, alloca is implemented in terms of malloc, and if we're
  888.    using the relocating allocator routines, then malloc could cause a
  889.    relocation, which might (if the strings being searched are in the
  890.    ralloc heap) shift the data out from underneath the regexp
  891.    routines.
  892.  
  893.    Here's another reason to avoid allocation: Emacs 
  894.    processes input from X in a signal handler; processing X input may
  895.    call malloc; if input arrives while a matching routine is calling
  896.    malloc, then we're scrod.  But Emacs can't just block input while
  897.    calling matching routines; then we don't notice interrupts when
  898.    they come in.  So, Emacs blocks input around all regexp calls
  899.    except the matching calls, which it leaves unprotected, in the
  900.    faith that they will not malloc.  */
  901.  
  902. /* Normally, this is fine.  */
  903. #define MATCH_MAY_ALLOCATE
  904.  
  905. /* The match routines may not allocate if (1) they would do it with malloc
  906.    and (2) it's not safe for htem to use malloc.  */
  907. #if (defined (C_ALLOCA) || defined (REGEX_MALLOC)) && (defined (emacs) || defined (REL_ALLOC))
  908. #undef MATCH_MAY_ALLOCATE
  909. #endif
  910.  
  911.  
  912. /* Failure stack declarations and macros; both re_compile_fastmap and
  913.    re_match_2 use a failure stack.  These have to be macros because of
  914.    REGEX_ALLOCATE.  */
  915.    
  916.  
  917. /* Number of failure points for which to initially allocate space
  918.    when matching.  If this number is exceeded, we allocate more
  919.    space, so it is not a hard limit.  */
  920. #ifndef INIT_FAILURE_ALLOC
  921. #define INIT_FAILURE_ALLOC 5
  922. #endif
  923.  
  924. /* Roughly the maximum number of failure points on the stack.  Would be
  925.    exactly that if always used MAX_FAILURE_SPACE each time we failed.
  926.    This is a variable only so users of regex can assign to it; we never
  927.    change it ourselves.  */
  928. int re_max_failures = 2000;
  929.  
  930. typedef unsigned char *fail_stack_elt_t;
  931.  
  932. typedef struct
  933. {
  934.   fail_stack_elt_t *stack;
  935.   unsigned size;
  936.   unsigned avail;            /* Offset of next open position.  */
  937. } fail_stack_type;
  938.  
  939. #define FAIL_STACK_EMPTY()     (fail_stack.avail == 0)
  940. #define FAIL_STACK_PTR_EMPTY() (fail_stack_ptr->avail == 0)
  941. #define FAIL_STACK_FULL()      (fail_stack.avail == fail_stack.size)
  942. #define FAIL_STACK_TOP()       (fail_stack.stack[fail_stack.avail])
  943.  
  944.  
  945. /* Initialize `fail_stack'.  Do `return -2' if the alloc fails.  */
  946.  
  947. #ifdef MATCH_MAY_ALLOCATE
  948. #define INIT_FAIL_STACK()                        \
  949.   do {                                    \
  950.     fail_stack.stack = (fail_stack_elt_t *)                \
  951.       REGEX_ALLOCATE (INIT_FAILURE_ALLOC * sizeof (fail_stack_elt_t));    \
  952.                                     \
  953.     if (fail_stack.stack == NULL)                    \
  954.       return -2;                            \
  955.                                     \
  956.     fail_stack.size = INIT_FAILURE_ALLOC;                \
  957.     fail_stack.avail = 0;                        \
  958.   } while (0)
  959. #else
  960. #define INIT_FAIL_STACK()                        \
  961.   do {                                    \
  962.     fail_stack.avail = 0;                        \
  963.   } while (0)
  964. #endif
  965.  
  966.  
  967. /* Double the size of FAIL_STACK, up to approximately `re_max_failures' items.
  968.  
  969.    Return 1 if succeeds, and 0 if either ran out of memory
  970.    allocating space for it or it was already too large.  
  971.    
  972.    REGEX_REALLOCATE requires `destination' be declared.   */
  973.  
  974. #define DOUBLE_FAIL_STACK(fail_stack)                    \
  975.   ((fail_stack).size > re_max_failures * MAX_FAILURE_ITEMS        \
  976.    ? 0                                    \
  977.    : ((fail_stack).stack = (fail_stack_elt_t *)                \
  978.         REGEX_REALLOCATE ((fail_stack).stack,                 \
  979.           (fail_stack).size * sizeof (fail_stack_elt_t),        \
  980.           ((fail_stack).size << 1) * sizeof (fail_stack_elt_t)),    \
  981.                                     \
  982.       (fail_stack).stack == NULL                    \
  983.       ? 0                                \
  984.       : ((fail_stack).size <<= 1,                     \
  985.          1)))
  986.  
  987.  
  988. /* Push PATTERN_OP on FAIL_STACK. 
  989.  
  990.    Return 1 if was able to do so and 0 if ran out of memory allocating
  991.    space to do so.  */
  992. #define PUSH_PATTERN_OP(pattern_op, fail_stack)                \
  993.   ((FAIL_STACK_FULL ()                            \
  994.     && !DOUBLE_FAIL_STACK (fail_stack))                    \
  995.     ? 0                                    \
  996.     : ((fail_stack).stack[(fail_stack).avail++] = pattern_op,        \
  997.        1))
  998.  
  999. /* This pushes an item onto the failure stack.  Must be a four-byte
  1000.    value.  Assumes the variable `fail_stack'.  Probably should only
  1001.    be called from within `PUSH_FAILURE_POINT'.  */
  1002. #define PUSH_FAILURE_ITEM(item)                        \
  1003.   fail_stack.stack[fail_stack.avail++] = (fail_stack_elt_t) item
  1004.  
  1005. /* The complement operation.  Assumes `fail_stack' is nonempty.  */
  1006. #define POP_FAILURE_ITEM() fail_stack.stack[--fail_stack.avail]
  1007.  
  1008. /* Used to omit pushing failure point id's when we're not debugging.  */
  1009. #ifdef DEBUG
  1010. #define DEBUG_PUSH PUSH_FAILURE_ITEM
  1011. #define DEBUG_POP(item_addr) *(item_addr) = POP_FAILURE_ITEM ()
  1012. #else
  1013. #define DEBUG_PUSH(item)
  1014. #define DEBUG_POP(item_addr)
  1015. #endif
  1016.  
  1017.  
  1018. /* Push the information about the state we will need
  1019.    if we ever fail back to it.  
  1020.    
  1021.    Requires variables fail_stack, regstart, regend, reg_info, and
  1022.    num_regs be declared.  DOUBLE_FAIL_STACK requires `destination' be
  1023.    declared.
  1024.    
  1025.    Does `return FAILURE_CODE' if runs out of memory.  */
  1026.  
  1027. #define PUSH_FAILURE_POINT(pattern_place, string_place, failure_code)    \
  1028.   do {                                    \
  1029.     char *destination;                            \
  1030.     /* Must be int, so when we don't save any registers, the arithmetic    \
  1031.        of 0 + -1 isn't done as unsigned.  */                \
  1032.     int this_reg;                            \
  1033.                                         \
  1034.     DEBUG_STATEMENT (failure_id++);                    \
  1035.     DEBUG_STATEMENT (nfailure_points_pushed++);                \
  1036.     DEBUG_PRINT2 ("\nPUSH_FAILURE_POINT #%u:\n", failure_id);        \
  1037.     DEBUG_PRINT2 ("  Before push, next avail: %d\n", (fail_stack).avail);\
  1038.     DEBUG_PRINT2 ("                     size: %d\n", (fail_stack).size);\
  1039.                                     \
  1040.     DEBUG_PRINT2 ("  slots needed: %d\n", NUM_FAILURE_ITEMS);        \
  1041.     DEBUG_PRINT2 ("     available: %d\n", REMAINING_AVAIL_SLOTS);    \
  1042.                                     \
  1043.     /* Ensure we have enough space allocated for what we will push.  */    \
  1044.     while (REMAINING_AVAIL_SLOTS < NUM_FAILURE_ITEMS)            \
  1045.       {                                    \
  1046.         if (!DOUBLE_FAIL_STACK (fail_stack))            \
  1047.           return failure_code;                        \
  1048.                                     \
  1049.         DEBUG_PRINT2 ("\n  Doubled stack; size now: %d\n",        \
  1050.                (fail_stack).size);                \
  1051.         DEBUG_PRINT2 ("  slots available: %d\n", REMAINING_AVAIL_SLOTS);\
  1052.       }                                    \
  1053.                                     \
  1054.     /* Push the info, starting with the registers.  */            \
  1055.     DEBUG_PRINT1 ("\n");                        \
  1056.                                     \
  1057.     for (this_reg = lowest_active_reg; this_reg <= highest_active_reg;    \
  1058.          this_reg++)                            \
  1059.       {                                    \
  1060.     DEBUG_PRINT2 ("  Pushing reg: %d\n", this_reg);            \
  1061.         DEBUG_STATEMENT (num_regs_pushed++);                \
  1062.                                     \
  1063.     DEBUG_PRINT2 ("    start: 0x%x\n", regstart[this_reg]);        \
  1064.         PUSH_FAILURE_ITEM (regstart[this_reg]);                \
  1065.                                                                         \
  1066.     DEBUG_PRINT2 ("    end: 0x%x\n", regend[this_reg]);        \
  1067.         PUSH_FAILURE_ITEM (regend[this_reg]);                \
  1068.                                     \
  1069.     DEBUG_PRINT2 ("    info: 0x%x\n      ", reg_info[this_reg]);    \
  1070.         DEBUG_PRINT2 (" match_null=%d",                    \
  1071.                       REG_MATCH_NULL_STRING_P (reg_info[this_reg]));    \
  1072.         DEBUG_PRINT2 (" active=%d", IS_ACTIVE (reg_info[this_reg]));    \
  1073.         DEBUG_PRINT2 (" matched_something=%d",                \
  1074.                       MATCHED_SOMETHING (reg_info[this_reg]));        \
  1075.         DEBUG_PRINT2 (" ever_matched=%d",                \
  1076.                       EVER_MATCHED_SOMETHING (reg_info[this_reg]));    \
  1077.     DEBUG_PRINT1 ("\n");                        \
  1078.         PUSH_FAILURE_ITEM (reg_info[this_reg].word);            \
  1079.       }                                    \
  1080.                                     \
  1081.     DEBUG_PRINT2 ("  Pushing  low active reg: %d\n", lowest_active_reg);\
  1082.     PUSH_FAILURE_ITEM (lowest_active_reg);                \
  1083.                                     \
  1084.     DEBUG_PRINT2 ("  Pushing high active reg: %d\n", highest_active_reg);\
  1085.     PUSH_FAILURE_ITEM (highest_active_reg);                \
  1086.                                     \
  1087.     DEBUG_PRINT2 ("  Pushing pattern 0x%x: ", pattern_place);        \
  1088.     DEBUG_PRINT_COMPILED_PATTERN (bufp, pattern_place, pend);        \
  1089.     PUSH_FAILURE_ITEM (pattern_place);                    \
  1090.                                     \
  1091.     DEBUG_PRINT2 ("  Pushing string 0x%x: `", string_place);        \
  1092.     DEBUG_PRINT_DOUBLE_STRING (string_place, string1, size1, string2,   \
  1093.                  size2);                \
  1094.     DEBUG_PRINT1 ("'\n");                        \
  1095.     PUSH_FAILURE_ITEM (string_place);                    \
  1096.                                     \
  1097.     DEBUG_PRINT2 ("  Pushing failure id: %u\n", failure_id);        \
  1098.     DEBUG_PUSH (failure_id);                        \
  1099.   } while (0)
  1100.  
  1101. /* This is the number of items that are pushed and popped on the stack
  1102.    for each register.  */
  1103. #define NUM_REG_ITEMS  3
  1104.  
  1105. /* Individual items aside from the registers.  */
  1106. #ifdef DEBUG
  1107. #define NUM_NONREG_ITEMS 5 /* Includes failure point id.  */
  1108. #else
  1109. #define NUM_NONREG_ITEMS 4
  1110. #endif
  1111.  
  1112. /* We push at most this many items on the stack.  */
  1113. #define MAX_FAILURE_ITEMS ((num_regs - 1) * NUM_REG_ITEMS + NUM_NONREG_ITEMS)
  1114.  
  1115. /* We actually push this many items.  */
  1116. #define NUM_FAILURE_ITEMS                        \
  1117.   ((highest_active_reg - lowest_active_reg + 1) * NUM_REG_ITEMS     \
  1118.     + NUM_NONREG_ITEMS)
  1119.  
  1120. /* How many items can still be added to the stack without overflowing it.  */
  1121. #define REMAINING_AVAIL_SLOTS ((fail_stack).size - (fail_stack).avail)
  1122.  
  1123.  
  1124. /* Pops what PUSH_FAIL_STACK pushes.
  1125.  
  1126.    We restore into the parameters, all of which should be lvalues:
  1127.      STR -- the saved data position.
  1128.      PAT -- the saved pattern position.
  1129.      LOW_REG, HIGH_REG -- the highest and lowest active registers.
  1130.      REGSTART, REGEND -- arrays of string positions.
  1131.      REG_INFO -- array of information about each subexpression.
  1132.    
  1133.    Also assumes the variables `fail_stack' and (if debugging), `bufp',
  1134.    `pend', `string1', `size1', `string2', and `size2'.  */
  1135.  
  1136. #define POP_FAILURE_POINT(str, pat, low_reg, high_reg, regstart, regend, reg_info)\
  1137. {                                    \
  1138.   DEBUG_STATEMENT (fail_stack_elt_t failure_id;)            \
  1139.   int this_reg;                                \
  1140.   const unsigned char *string_temp;                    \
  1141.                                     \
  1142.   assert (!FAIL_STACK_EMPTY ());                    \
  1143.                                     \
  1144.   /* Remove failure points and point to how many regs pushed.  */    \
  1145.   DEBUG_PRINT1 ("POP_FAILURE_POINT:\n");                \
  1146.   DEBUG_PRINT2 ("  Before pop, next avail: %d\n", fail_stack.avail);    \
  1147.   DEBUG_PRINT2 ("                    size: %d\n", fail_stack.size);    \
  1148.                                     \
  1149.   assert (fail_stack.avail >= NUM_NONREG_ITEMS);            \
  1150.                                     \
  1151.   DEBUG_POP (&failure_id);                        \
  1152.   DEBUG_PRINT2 ("  Popping failure id: %u\n", failure_id);        \
  1153.                                     \
  1154.   /* If the saved string location is NULL, it came from an        \
  1155.      on_failure_keep_string_jump opcode, and we want to throw away the    \
  1156.      saved NULL, thus retaining our current position in the string.  */    \
  1157.   string_temp = POP_FAILURE_ITEM ();                    \
  1158.   if (string_temp != NULL)                        \
  1159.     str = (const char *) string_temp;                    \
  1160.                                     \
  1161.   DEBUG_PRINT2 ("  Popping string 0x%x: `", str);            \
  1162.   DEBUG_PRINT_DOUBLE_STRING (str, string1, size1, string2, size2);    \
  1163.   DEBUG_PRINT1 ("'\n");                            \
  1164.                                     \
  1165.   pat = (unsigned char *) POP_FAILURE_ITEM ();                \
  1166.   DEBUG_PRINT2 ("  Popping pattern 0x%x: ", pat);            \
  1167.   DEBUG_PRINT_COMPILED_PATTERN (bufp, pat, pend);            \
  1168.                                     \
  1169.   /* Restore register info.  */                        \
  1170.   high_reg = (unsigned) POP_FAILURE_ITEM ();                \
  1171.   DEBUG_PRINT2 ("  Popping high active reg: %d\n", high_reg);        \
  1172.                                     \
  1173.   low_reg = (unsigned) POP_FAILURE_ITEM ();                \
  1174.   DEBUG_PRINT2 ("  Popping  low active reg: %d\n", low_reg);        \
  1175.                                     \
  1176.   for (this_reg = high_reg; this_reg >= low_reg; this_reg--)        \
  1177.     {                                    \
  1178.       DEBUG_PRINT2 ("    Popping reg: %d\n", this_reg);            \
  1179.                                     \
  1180.       reg_info[this_reg].word = POP_FAILURE_ITEM ();            \
  1181.       DEBUG_PRINT2 ("      info: 0x%x\n", reg_info[this_reg]);        \
  1182.                                     \
  1183.       regend[this_reg] = (const char *) POP_FAILURE_ITEM ();        \
  1184.       DEBUG_PRINT2 ("      end: 0x%x\n", regend[this_reg]);        \
  1185.                                     \
  1186.       regstart[this_reg] = (const char *) POP_FAILURE_ITEM ();        \
  1187.       DEBUG_PRINT2 ("      start: 0x%x\n", regstart[this_reg]);        \
  1188.     }                                    \
  1189.                                     \
  1190.   DEBUG_STATEMENT (nfailure_points_popped++);                \
  1191. } /* POP_FAILURE_POINT */
  1192.  
  1193.  
  1194.  
  1195. /* Structure for per-register (a.k.a. per-group) information.
  1196.    This must not be longer than one word, because we push this value
  1197.    onto the failure stack.  Other register information, such as the
  1198.    starting and ending positions (which are addresses), and the list of
  1199.    inner groups (which is a bits list) are maintained in separate
  1200.    variables.  
  1201.    
  1202.    We are making a (strictly speaking) nonportable assumption here: that
  1203.    the compiler will pack our bit fields into something that fits into
  1204.    the type of `word', i.e., is something that fits into one item on the
  1205.    failure stack.  */
  1206. typedef union
  1207. {
  1208.   fail_stack_elt_t word;
  1209.   struct
  1210.   {
  1211.       /* This field is one if this group can match the empty string,
  1212.          zero if not.  If not yet determined,  `MATCH_NULL_UNSET_VALUE'.  */
  1213. #define MATCH_NULL_UNSET_VALUE 3
  1214.     unsigned match_null_string_p : 2;
  1215.     unsigned is_active : 1;
  1216.     unsigned matched_something : 1;
  1217.     unsigned ever_matched_something : 1;
  1218.   } bits;
  1219. } register_info_type;
  1220.  
  1221. #define REG_MATCH_NULL_STRING_P(R)  ((R).bits.match_null_string_p)
  1222. #define IS_ACTIVE(R)  ((R).bits.is_active)
  1223. #define MATCHED_SOMETHING(R)  ((R).bits.matched_something)
  1224. #define EVER_MATCHED_SOMETHING(R)  ((R).bits.ever_matched_something)
  1225.  
  1226.  
  1227. /* Call this when have matched a real character; it sets `matched' flags
  1228.    for the subexpressions which we are currently inside.  Also records
  1229.    that those subexprs have matched.  */
  1230. #define SET_REGS_MATCHED()                        \
  1231.   do                                    \
  1232.     {                                    \
  1233.       unsigned r;                            \
  1234.       for (r = lowest_active_reg; r <= highest_active_reg; r++)        \
  1235.         {                                \
  1236.           MATCHED_SOMETHING (reg_info[r])                \
  1237.             = EVER_MATCHED_SOMETHING (reg_info[r])            \
  1238.             = 1;                            \
  1239.         }                                \
  1240.     }                                    \
  1241.   while (0)
  1242.  
  1243.  
  1244. /* Registers are set to a sentinel when they haven't yet matched.  */
  1245. #define REG_UNSET_VALUE ((char *) -1)
  1246. #define REG_UNSET(e) ((e) == REG_UNSET_VALUE)
  1247.  
  1248.  
  1249.  
  1250. /* How do we implement a missing MATCH_MAY_ALLOCATE?
  1251.    We make the fail stack a global thing, and then grow it to
  1252.    re_max_failures when we compile.  */
  1253. #ifndef MATCH_MAY_ALLOCATE
  1254. static fail_stack_type fail_stack;
  1255.  
  1256. static const char **     regstart, **     regend;
  1257. static const char ** old_regstart, ** old_regend;
  1258. static const char **best_regstart, **best_regend;
  1259. static register_info_type *reg_info; 
  1260. static const char **reg_dummy;
  1261. static register_info_type *reg_info_dummy;
  1262. #endif
  1263.  
  1264.  
  1265. /* Subroutine declarations and macros for regex_compile.  */
  1266.  
  1267. static void store_op1 (), store_op2 ();
  1268. static void insert_op1 (), insert_op2 ();
  1269. static boolean at_begline_loc_p (), at_endline_loc_p ();
  1270. static boolean group_in_compile_stack ();
  1271. static reg_errcode_t compile_range ();
  1272.  
  1273. /* Fetch the next character in the uncompiled pattern---translating it 
  1274.    if necessary.  Also cast from a signed character in the constant
  1275.    string passed to us by the user to an unsigned char that we can use
  1276.    as an array index (in, e.g., `translate').  */
  1277. #define PATFETCH(c)                            \
  1278.   do {if (p == pend) return REG_EEND;                    \
  1279.     c = (unsigned char) *p++;                        \
  1280.     if (translate) c = translate[c];                     \
  1281.   } while (0)
  1282.  
  1283. /* Fetch the next character in the uncompiled pattern, with no
  1284.    translation.  */
  1285. #define PATFETCH_RAW(c)                            \
  1286.   do {if (p == pend) return REG_EEND;                    \
  1287.     c = (unsigned char) *p++;                         \
  1288.   } while (0)
  1289.  
  1290. /* Go backwards one character in the pattern.  */
  1291. #define PATUNFETCH p--
  1292.  
  1293.  
  1294. /* If `translate' is non-null, return translate[D], else just D.  We
  1295.    cast the subscript to translate because some data is declared as
  1296.    `char *', to avoid warnings when a string constant is passed.  But
  1297.    when we use a character as a subscript we must make it unsigned.  */
  1298. #define TRANSLATE(d) (translate ? translate[(unsigned char) (d)] : (d))
  1299.  
  1300.  
  1301. /* Macros for outputting the compiled pattern into `buffer'.  */
  1302.  
  1303. /* If the buffer isn't allocated when it comes in, use this.  */
  1304. #define INIT_BUF_SIZE  32
  1305.  
  1306. /* Make sure we have at least N more bytes of space in buffer.  */
  1307. #define GET_BUFFER_SPACE(n)                        \
  1308.     while (b - bufp->buffer + (n) > bufp->allocated)            \
  1309.       EXTEND_BUFFER ()
  1310.  
  1311. /* Make sure we have one more byte of buffer space and then add C to it.  */
  1312. #define BUF_PUSH(c)                            \
  1313.   do {                                    \
  1314.     GET_BUFFER_SPACE (1);                        \
  1315.     *b++ = (unsigned char) (c);                        \
  1316.   } while (0)
  1317.  
  1318.  
  1319. /* Ensure we have two more bytes of buffer space and then append C1 and C2.  */
  1320. #define BUF_PUSH_2(c1, c2)                        \
  1321.   do {                                    \
  1322.     GET_BUFFER_SPACE (2);                        \
  1323.     *b++ = (unsigned char) (c1);                    \
  1324.     *b++ = (unsigned char) (c2);                    \
  1325.   } while (0)
  1326.  
  1327.  
  1328. /* As with BUF_PUSH_2, except for three bytes.  */
  1329. #define BUF_PUSH_3(c1, c2, c3)                        \
  1330.   do {                                    \
  1331.     GET_BUFFER_SPACE (3);                        \
  1332.     *b++ = (unsigned char) (c1);                    \
  1333.     *b++ = (unsigned char) (c2);                    \
  1334.     *b++ = (unsigned char) (c3);                    \
  1335.   } while (0)
  1336.  
  1337.  
  1338. /* Store a jump with opcode OP at LOC to location TO.  We store a
  1339.    relative address offset by the three bytes the jump itself occupies.  */
  1340. #define STORE_JUMP(op, loc, to) \
  1341.   store_op1 (op, loc, (to) - (loc) - 3)
  1342.  
  1343. /* Likewise, for a two-argument jump.  */
  1344. #define STORE_JUMP2(op, loc, to, arg) \
  1345.   store_op2 (op, loc, (to) - (loc) - 3, arg)
  1346.  
  1347. /* Like `STORE_JUMP', but for inserting.  Assume `b' is the buffer end.  */
  1348. #define INSERT_JUMP(op, loc, to) \
  1349.   insert_op1 (op, loc, (to) - (loc) - 3, b)
  1350.  
  1351. /* Like `STORE_JUMP2', but for inserting.  Assume `b' is the buffer end.  */
  1352. #define INSERT_JUMP2(op, loc, to, arg) \
  1353.   insert_op2 (op, loc, (to) - (loc) - 3, arg, b)
  1354.  
  1355.  
  1356. /* This is not an arbitrary limit: the arguments which represent offsets
  1357.    into the pattern are two bytes long.  So if 2^16 bytes turns out to
  1358.    be too small, many things would have to change.  */
  1359. #define MAX_BUF_SIZE (1L << 16)
  1360.  
  1361.  
  1362. /* Extend the buffer by twice its current size via realloc and
  1363.    reset the pointers that pointed into the old block to point to the
  1364.    correct places in the new one.  If extending the buffer results in it
  1365.    being larger than MAX_BUF_SIZE, then flag memory exhausted.  */
  1366. #define EXTEND_BUFFER()                            \
  1367.   do {                                     \
  1368.     unsigned char *old_buffer = bufp->buffer;                \
  1369.     if (bufp->allocated == MAX_BUF_SIZE)                 \
  1370.       return REG_ESIZE;                            \
  1371.     bufp->allocated <<= 1;                        \
  1372.     if (bufp->allocated > MAX_BUF_SIZE)                    \
  1373.       bufp->allocated = MAX_BUF_SIZE;                     \
  1374.     bufp->buffer = (unsigned char *) realloc (bufp->buffer, bufp->allocated);\
  1375.     if (bufp->buffer == NULL)                        \
  1376.       return REG_ESPACE;                        \
  1377.     /* If the buffer moved, move all the pointers into it.  */        \
  1378.     if (old_buffer != bufp->buffer)                    \
  1379.       {                                    \
  1380.         b = (b - old_buffer) + bufp->buffer;                \
  1381.         begalt = (begalt - old_buffer) + bufp->buffer;            \
  1382.         if (fixup_alt_jump)                        \
  1383.           fixup_alt_jump = (fixup_alt_jump - old_buffer) + bufp->buffer;\
  1384.         if (laststart)                            \
  1385.           laststart = (laststart - old_buffer) + bufp->buffer;        \
  1386.         if (pending_exact)                        \
  1387.           pending_exact = (pending_exact - old_buffer) + bufp->buffer;    \
  1388.       }                                    \
  1389.   } while (0)
  1390.  
  1391.  
  1392. /* Since we have one byte reserved for the register number argument to
  1393.    {start,stop}_memory, the maximum number of groups we can report
  1394.    things about is what fits in that byte.  */
  1395. #define MAX_REGNUM 255
  1396.  
  1397. /* But patterns can have more than `MAX_REGNUM' registers.  We just
  1398.    ignore the excess.  */
  1399. typedef unsigned regnum_t;
  1400.  
  1401.  
  1402. /* Macros for the compile stack.  */
  1403.  
  1404. /* Since offsets can go either forwards or backwards, this type needs to
  1405.    be able to hold values from -(MAX_BUF_SIZE - 1) to MAX_BUF_SIZE - 1.  */
  1406. typedef int pattern_offset_t;
  1407.  
  1408. typedef struct
  1409. {
  1410.   pattern_offset_t begalt_offset;
  1411.   pattern_offset_t fixup_alt_jump;
  1412.   pattern_offset_t inner_group_offset;
  1413.   pattern_offset_t laststart_offset;  
  1414.   regnum_t regnum;
  1415. } compile_stack_elt_t;
  1416.  
  1417.  
  1418. typedef struct
  1419. {
  1420.   compile_stack_elt_t *stack;
  1421.   unsigned size;
  1422.   unsigned avail;            /* Offset of next open position.  */
  1423. } compile_stack_type;
  1424.  
  1425.  
  1426. #define INIT_COMPILE_STACK_SIZE 32
  1427.  
  1428. #define COMPILE_STACK_EMPTY  (compile_stack.avail == 0)
  1429. #define COMPILE_STACK_FULL  (compile_stack.avail == compile_stack.size)
  1430.  
  1431. /* The next available element.  */
  1432. #define COMPILE_STACK_TOP (compile_stack.stack[compile_stack.avail])
  1433.  
  1434.  
  1435. /* Set the bit for character C in a list.  */
  1436. #define SET_LIST_BIT(c)                               \
  1437.   (b[((unsigned char) (c)) / BYTEWIDTH]               \
  1438.    |= 1 << (((unsigned char) c) % BYTEWIDTH))
  1439.  
  1440.  
  1441. /* Get the next unsigned number in the uncompiled pattern.  */
  1442. #define GET_UNSIGNED_NUMBER(num)                     \
  1443.   { if (p != pend)                            \
  1444.      {                                    \
  1445.        PATFETCH (c);                             \
  1446.        while (ISDIGIT (c))                         \
  1447.          {                                 \
  1448.            if (num < 0)                            \
  1449.               num = 0;                            \
  1450.            num = num * 10 + c - '0';                     \
  1451.            if (p == pend)                         \
  1452.               break;                             \
  1453.            PATFETCH (c);                        \
  1454.          }                                 \
  1455.        }                                 \
  1456.     }        
  1457.  
  1458. #define CHAR_CLASS_MAX_LENGTH  6 /* Namely, `xdigit'.  */
  1459.  
  1460. #define IS_CHAR_CLASS(string)                        \
  1461.    (STREQ (string, "alpha") || STREQ (string, "upper")            \
  1462.     || STREQ (string, "lower") || STREQ (string, "digit")        \
  1463.     || STREQ (string, "alnum") || STREQ (string, "xdigit")        \
  1464.     || STREQ (string, "space") || STREQ (string, "print")        \
  1465.     || STREQ (string, "punct") || STREQ (string, "graph")        \
  1466.     || STREQ (string, "cntrl") || STREQ (string, "blank"))
  1467.  
  1468. /* `regex_compile' compiles PATTERN (of length SIZE) according to SYNTAX.
  1469.    Returns one of error codes defined in `regex.h', or zero for success.
  1470.  
  1471.    Assumes the `allocated' (and perhaps `buffer') and `translate'
  1472.    fields are set in BUFP on entry.
  1473.  
  1474.    If it succeeds, results are put in BUFP (if it returns an error, the
  1475.    contents of BUFP are undefined):
  1476.      `buffer' is the compiled pattern;
  1477.      `syntax' is set to SYNTAX;
  1478.      `used' is set to the length of the compiled pattern;
  1479.      `fastmap_accurate' is zero;
  1480.      `re_nsub' is the number of subexpressions in PATTERN;
  1481.      `not_bol' and `not_eol' are zero;
  1482.    
  1483.    The `fastmap' and `newline_anchor' fields are neither
  1484.    examined nor set.  */
  1485.  
  1486. /* Return, freeing storage we allocated.  */
  1487. #define FREE_STACK_RETURN(value)        \
  1488.   return (free (compile_stack.stack), value)
  1489.  
  1490. static reg_errcode_t
  1491. regex_compile (pattern, size, syntax, bufp)
  1492.      const char *pattern;
  1493.      int size;
  1494.      reg_syntax_t syntax;
  1495.      struct re_pattern_buffer *bufp;
  1496. {
  1497.   /* We fetch characters from PATTERN here.  Even though PATTERN is
  1498.      `char *' (i.e., signed), we declare these variables as unsigned, so
  1499.      they can be reliably used as array indices.  */
  1500.   register unsigned char c, c1;
  1501.   
  1502.   /* A random temporary spot in PATTERN.  */
  1503.   const char *p1;
  1504.  
  1505.   /* Points to the end of the buffer, where we should append.  */
  1506.   register unsigned char *b;
  1507.   
  1508.   /* Keeps track of unclosed groups.  */
  1509.   compile_stack_type compile_stack;
  1510.  
  1511.   /* Points to the current (ending) position in the pattern.  */
  1512.   const char *p = pattern;
  1513.   const char *pend = pattern + size;
  1514.   
  1515.   /* How to translate the characters in the pattern.  */
  1516.   char *translate = bufp->translate;
  1517.  
  1518.   /* Address of the count-byte of the most recently inserted `exactn'
  1519.      command.  This makes it possible to tell if a new exact-match
  1520.      character can be added to that command or if the character requires
  1521.      a new `exactn' command.  */
  1522.   unsigned char *pending_exact = 0;
  1523.  
  1524.   /* Address of start of the most recently finished expression.
  1525.      This tells, e.g., postfix * where to find the start of its
  1526.      operand.  Reset at the beginning of groups and alternatives.  */
  1527.   unsigned char *laststart = 0;
  1528.  
  1529.   /* Address of beginning of regexp, or inside of last group.  */
  1530.   unsigned char *begalt;
  1531.  
  1532.   /* Place in the uncompiled pattern (i.e., the {) to
  1533.      which to go back if the interval is invalid.  */
  1534.   const char *beg_interval;
  1535.                 
  1536.   /* Address of the place where a forward jump should go to the end of
  1537.      the containing expression.  Each alternative of an `or' -- except the
  1538.      last -- ends with a forward jump of this sort.  */
  1539.   unsigned char *fixup_alt_jump = 0;
  1540.  
  1541.   /* Counts open-groups as they are encountered.  Remembered for the
  1542.      matching close-group on the compile stack, so the same register
  1543.      number is put in the stop_memory as the start_memory.  */
  1544.   regnum_t regnum = 0;
  1545.  
  1546. #ifdef DEBUG
  1547.   DEBUG_PRINT1 ("\nCompiling pattern: ");
  1548.   if (debug)
  1549.     {
  1550.       unsigned debug_count;
  1551.       
  1552.       for (debug_count = 0; debug_count < size; debug_count++)
  1553.         printchar (pattern[debug_count]);
  1554.       putchar ('\n');
  1555.     }
  1556. #endif /* DEBUG */
  1557.  
  1558.   /* Initialize the compile stack.  */
  1559.   compile_stack.stack = TALLOC (INIT_COMPILE_STACK_SIZE, compile_stack_elt_t);
  1560.   if (compile_stack.stack == NULL)
  1561.     return REG_ESPACE;
  1562.  
  1563.   compile_stack.size = INIT_COMPILE_STACK_SIZE;
  1564.   compile_stack.avail = 0;
  1565.  
  1566.   /* Initialize the pattern buffer.  */
  1567.   bufp->syntax = syntax;
  1568.   bufp->fastmap_accurate = 0;
  1569.   bufp->not_bol = bufp->not_eol = 0;
  1570.  
  1571.   /* Set `used' to zero, so that if we return an error, the pattern
  1572.      printer (for debugging) will think there's no pattern.  We reset it
  1573.      at the end.  */
  1574.   bufp->used = 0;
  1575.   
  1576.   /* Always count groups, whether or not bufp->no_sub is set.  */
  1577.   bufp->re_nsub = 0;                
  1578.  
  1579. #if !defined (emacs) && !defined (SYNTAX_TABLE)
  1580.   /* Initialize the syntax table.  */
  1581.    init_syntax_once ();
  1582. #endif
  1583.  
  1584.   if (bufp->allocated == 0)
  1585.     {
  1586.       if (bufp->buffer)
  1587.     { /* If zero allocated, but buffer is non-null, try to realloc
  1588.              enough space.  This loses if buffer's address is bogus, but
  1589.              that is the user's responsibility.  */
  1590.           RETALLOC (bufp->buffer, INIT_BUF_SIZE, unsigned char);
  1591.         }
  1592.       else
  1593.         { /* Caller did not allocate a buffer.  Do it for them.  */
  1594.           bufp->buffer = TALLOC (INIT_BUF_SIZE, unsigned char);
  1595.         }
  1596.       if (!bufp->buffer) FREE_STACK_RETURN (REG_ESPACE);
  1597.  
  1598.       bufp->allocated = INIT_BUF_SIZE;
  1599.     }
  1600.  
  1601.   begalt = b = bufp->buffer;
  1602.  
  1603.   /* Loop through the uncompiled pattern until we're at the end.  */
  1604.   while (p != pend)
  1605.     {
  1606.       PATFETCH (c);
  1607.  
  1608.       switch (c)
  1609.         {
  1610.         case '^':
  1611.           {
  1612.             if (   /* If at start of pattern, it's an operator.  */
  1613.                    p == pattern + 1
  1614.                    /* If context independent, it's an operator.  */
  1615.                 || syntax & RE_CONTEXT_INDEP_ANCHORS
  1616.                    /* Otherwise, depends on what's come before.  */
  1617.                 || at_begline_loc_p (pattern, p, syntax))
  1618.               BUF_PUSH (begline);
  1619.             else
  1620.               goto normal_char;
  1621.           }
  1622.           break;
  1623.  
  1624.  
  1625.         case '$':
  1626.           {
  1627.             if (   /* If at end of pattern, it's an operator.  */
  1628.                    p == pend 
  1629.                    /* If context independent, it's an operator.  */
  1630.                 || syntax & RE_CONTEXT_INDEP_ANCHORS
  1631.                    /* Otherwise, depends on what's next.  */
  1632.                 || at_endline_loc_p (p, pend, syntax))
  1633.                BUF_PUSH (endline);
  1634.              else
  1635.                goto normal_char;
  1636.            }
  1637.            break;
  1638.  
  1639.  
  1640.     case '+':
  1641.         case '?':
  1642.           if ((syntax & RE_BK_PLUS_QM)
  1643.               || (syntax & RE_LIMITED_OPS))
  1644.             goto normal_char;
  1645.         handle_plus:
  1646.         case '*':
  1647.           /* If there is no previous pattern... */
  1648.           if (!laststart)
  1649.             {
  1650.               if (syntax & RE_CONTEXT_INVALID_OPS)
  1651.                 FREE_STACK_RETURN (REG_BADRPT);
  1652.               else if (!(syntax & RE_CONTEXT_INDEP_OPS))
  1653.                 goto normal_char;
  1654.             }
  1655.  
  1656.           {
  1657.             /* Are we optimizing this jump?  */
  1658.             boolean keep_string_p = false;
  1659.             
  1660.             /* 1 means zero (many) matches is allowed.  */
  1661.             char zero_times_ok = 0, many_times_ok = 0;
  1662.  
  1663.             /* If there is a sequence of repetition chars, collapse it
  1664.                down to just one (the right one).  We can't combine
  1665.                interval operators with these because of, e.g., `a{2}*',
  1666.                which should only match an even number of `a's.  */
  1667.  
  1668.             for (;;)
  1669.               {
  1670.                 zero_times_ok |= c != '+';
  1671.                 many_times_ok |= c != '?';
  1672.  
  1673.                 if (p == pend)
  1674.                   break;
  1675.  
  1676.                 PATFETCH (c);
  1677.  
  1678.                 if (c == '*'
  1679.                     || (!(syntax & RE_BK_PLUS_QM) && (c == '+' || c == '?')))
  1680.                   ;
  1681.  
  1682.                 else if (syntax & RE_BK_PLUS_QM  &&  c == '\\')
  1683.                   {
  1684.                     if (p == pend) FREE_STACK_RETURN (REG_EESCAPE);
  1685.  
  1686.                     PATFETCH (c1);
  1687.                     if (!(c1 == '+' || c1 == '?'))
  1688.                       {
  1689.                         PATUNFETCH;
  1690.                         PATUNFETCH;
  1691.                         break;
  1692.                       }
  1693.  
  1694.                     c = c1;
  1695.                   }
  1696.                 else
  1697.                   {
  1698.                     PATUNFETCH;
  1699.                     break;
  1700.                   }
  1701.  
  1702.                 /* If we get here, we found another repeat character.  */
  1703.                }
  1704.  
  1705.             /* Star, etc. applied to an empty pattern is equivalent
  1706.                to an empty pattern.  */
  1707.             if (!laststart)  
  1708.               break;
  1709.  
  1710.             /* Now we know whether or not zero matches is allowed
  1711.                and also whether or not two or more matches is allowed.  */
  1712.             if (many_times_ok)
  1713.               { /* More than one repetition is allowed, so put in at the
  1714.                    end a backward relative jump from `b' to before the next
  1715.                    jump we're going to put in below (which jumps from
  1716.                    laststart to after this jump).  
  1717.  
  1718.                    But if we are at the `*' in the exact sequence `.*\n',
  1719.                    insert an unconditional jump backwards to the .,
  1720.                    instead of the beginning of the loop.  This way we only
  1721.                    push a failure point once, instead of every time
  1722.                    through the loop.  */
  1723.                 assert (p - 1 > pattern);
  1724.  
  1725.                 /* Allocate the space for the jump.  */
  1726.                 GET_BUFFER_SPACE (3);
  1727.  
  1728.                 /* We know we are not at the first character of the pattern,
  1729.                    because laststart was nonzero.  And we've already
  1730.                    incremented `p', by the way, to be the character after
  1731.                    the `*'.  Do we have to do something analogous here
  1732.                    for null bytes, because of RE_DOT_NOT_NULL?  */
  1733.                 if (TRANSLATE (*(p - 2)) == TRANSLATE ('.')
  1734.             && zero_times_ok
  1735.                     && p < pend && TRANSLATE (*p) == TRANSLATE ('\n')
  1736.                     && !(syntax & RE_DOT_NEWLINE))
  1737.                   { /* We have .*\n.  */
  1738.                     STORE_JUMP (jump, b, laststart);
  1739.                     keep_string_p = true;
  1740.                   }
  1741.                 else
  1742.                   /* Anything else.  */
  1743.                   STORE_JUMP (maybe_pop_jump, b, laststart - 3);
  1744.  
  1745.                 /* We've added more stuff to the buffer.  */
  1746.                 b += 3;
  1747.               }
  1748.  
  1749.             /* On failure, jump from laststart to b + 3, which will be the
  1750.                end of the buffer after this jump is inserted.  */
  1751.             GET_BUFFER_SPACE (3);
  1752.             INSERT_JUMP (keep_string_p ? on_failure_keep_string_jump
  1753.                                        : on_failure_jump,
  1754.                          laststart, b + 3);
  1755.             pending_exact = 0;
  1756.             b += 3;
  1757.  
  1758.             if (!zero_times_ok)
  1759.               {
  1760.                 /* At least one repetition is required, so insert a
  1761.                    `dummy_failure_jump' before the initial
  1762.                    `on_failure_jump' instruction of the loop. This
  1763.                    effects a skip over that instruction the first time
  1764.                    we hit that loop.  */
  1765.                 GET_BUFFER_SPACE (3);
  1766.                 INSERT_JUMP (dummy_failure_jump, laststart, laststart + 6);
  1767.                 b += 3;
  1768.               }
  1769.             }
  1770.       break;
  1771.  
  1772.  
  1773.     case '.':
  1774.           laststart = b;
  1775.           BUF_PUSH (anychar);
  1776.           break;
  1777.  
  1778.  
  1779.         case '[':
  1780.           {
  1781.             boolean had_char_class = false;
  1782.  
  1783.             if (p == pend) FREE_STACK_RETURN (REG_EBRACK);
  1784.  
  1785.             /* Ensure that we have enough space to push a charset: the
  1786.                opcode, the length count, and the bitset; 34 bytes in all.  */
  1787.         GET_BUFFER_SPACE (34);
  1788.  
  1789.             laststart = b;
  1790.  
  1791.             /* We test `*p == '^' twice, instead of using an if
  1792.                statement, so we only need one BUF_PUSH.  */
  1793.             BUF_PUSH (*p == '^' ? charset_not : charset); 
  1794.             if (*p == '^')
  1795.               p++;
  1796.  
  1797.             /* Remember the first position in the bracket expression.  */
  1798.             p1 = p;
  1799.  
  1800.             /* Push the number of bytes in the bitmap.  */
  1801.             BUF_PUSH ((1 << BYTEWIDTH) / BYTEWIDTH);
  1802.  
  1803.             /* Clear the whole map.  */
  1804.             bzero (b, (1 << BYTEWIDTH) / BYTEWIDTH);
  1805.  
  1806.             /* charset_not matches newline according to a syntax bit.  */
  1807.             if ((re_opcode_t) b[-2] == charset_not
  1808.                 && (syntax & RE_HAT_LISTS_NOT_NEWLINE))
  1809.               SET_LIST_BIT ('\n');
  1810.  
  1811.             /* Read in characters and ranges, setting map bits.  */
  1812.             for (;;)
  1813.               {
  1814.                 if (p == pend) FREE_STACK_RETURN (REG_EBRACK);
  1815.  
  1816.                 PATFETCH (c);
  1817.  
  1818.                 /* \ might escape characters inside [...] and [^...].  */
  1819.                 if ((syntax & RE_BACKSLASH_ESCAPE_IN_LISTS) && c == '\\')
  1820.                   {
  1821.                     if (p == pend) FREE_STACK_RETURN (REG_EESCAPE);
  1822.  
  1823.                     PATFETCH (c1);
  1824.                     SET_LIST_BIT (c1);
  1825.                     continue;
  1826.                   }
  1827.  
  1828.                 /* Could be the end of the bracket expression.  If it's
  1829.                    not (i.e., when the bracket expression is `[]' so
  1830.                    far), the ']' character bit gets set way below.  */
  1831.                 if (c == ']' && p != p1 + 1)
  1832.                   break;
  1833.  
  1834.                 /* Look ahead to see if it's a range when the last thing
  1835.                    was a character class.  */
  1836.                 if (had_char_class && c == '-' && *p != ']')
  1837.                   FREE_STACK_RETURN (REG_ERANGE);
  1838.  
  1839.                 /* Look ahead to see if it's a range when the last thing
  1840.                    was a character: if this is a hyphen not at the
  1841.                    beginning or the end of a list, then it's the range
  1842.                    operator.  */
  1843.                 if (c == '-' 
  1844.                     && !(p - 2 >= pattern && p[-2] == '[') 
  1845.                     && !(p - 3 >= pattern && p[-3] == '[' && p[-2] == '^')
  1846.                     && *p != ']')
  1847.                   {
  1848.                     reg_errcode_t ret
  1849.                       = compile_range (&p, pend, translate, syntax, b);
  1850.                     if (ret != REG_NOERROR) FREE_STACK_RETURN (ret);
  1851.                   }
  1852.  
  1853.                 else if (p[0] == '-' && p[1] != ']')
  1854.                   { /* This handles ranges made up of characters only.  */
  1855.                     reg_errcode_t ret;
  1856.  
  1857.             /* Move past the `-'.  */
  1858.                     PATFETCH (c1);
  1859.                     
  1860.                     ret = compile_range (&p, pend, translate, syntax, b);
  1861.                     if (ret != REG_NOERROR) FREE_STACK_RETURN (ret);
  1862.                   }
  1863.  
  1864.                 /* See if we're at the beginning of a possible character
  1865.                    class.  */
  1866.  
  1867.                 else if (syntax & RE_CHAR_CLASSES && c == '[' && *p == ':')
  1868.                   { /* Leave room for the null.  */
  1869.                     char str[CHAR_CLASS_MAX_LENGTH + 1];
  1870.  
  1871.                     PATFETCH (c);
  1872.                     c1 = 0;
  1873.  
  1874.                     /* If pattern is `[[:'.  */
  1875.                     if (p == pend) FREE_STACK_RETURN (REG_EBRACK);
  1876.  
  1877.                     for (;;)
  1878.                       {
  1879.                         PATFETCH (c);
  1880.                         if (c == ':' || c == ']' || p == pend
  1881.                             || c1 == CHAR_CLASS_MAX_LENGTH)
  1882.                           break;
  1883.                         str[c1++] = c;
  1884.                       }
  1885.                     str[c1] = '\0';
  1886.  
  1887.                     /* If isn't a word bracketed by `[:' and:`]':
  1888.                        undo the ending character, the letters, and leave 
  1889.                        the leading `:' and `[' (but set bits for them).  */
  1890.                     if (c == ':' && *p == ']')
  1891.                       {
  1892.                         int ch;
  1893.                         boolean is_alnum = STREQ (str, "alnum");
  1894.                         boolean is_alpha = STREQ (str, "alpha");
  1895.                         boolean is_blank = STREQ (str, "blank");
  1896.                         boolean is_cntrl = STREQ (str, "cntrl");
  1897.                         boolean is_digit = STREQ (str, "digit");
  1898.                         boolean is_graph = STREQ (str, "graph");
  1899.                         boolean is_lower = STREQ (str, "lower");
  1900.                         boolean is_print = STREQ (str, "print");
  1901.                         boolean is_punct = STREQ (str, "punct");
  1902.                         boolean is_space = STREQ (str, "space");
  1903.                         boolean is_upper = STREQ (str, "upper");
  1904.                         boolean is_xdigit = STREQ (str, "xdigit");
  1905.                         
  1906.                         if (!IS_CHAR_CLASS (str))
  1907.               FREE_STACK_RETURN (REG_ECTYPE);
  1908.  
  1909.                         /* Throw away the ] at the end of the character
  1910.                            class.  */
  1911.                         PATFETCH (c);                    
  1912.  
  1913.                         if (p == pend) FREE_STACK_RETURN (REG_EBRACK);
  1914.  
  1915.                         for (ch = 0; ch < 1 << BYTEWIDTH; ch++)
  1916.                           {
  1917.                 /* This was split into 3 if's to
  1918.                    avoid an arbitrary limit in some compiler.  */
  1919.                             if (   (is_alnum  && ISALNUM (ch))
  1920.                                 || (is_alpha  && ISALPHA (ch))
  1921.                                 || (is_blank  && ISBLANK (ch))
  1922.                                 || (is_cntrl  && ISCNTRL (ch)))
  1923.                   SET_LIST_BIT (ch);
  1924.                 if (   (is_digit  && ISDIGIT (ch))
  1925.                                 || (is_graph  && ISGRAPH (ch))
  1926.                                 || (is_lower  && ISLOWER (ch))
  1927.                                 || (is_print  && ISPRINT (ch)))
  1928.                   SET_LIST_BIT (ch);
  1929.                 if (   (is_punct  && ISPUNCT (ch))
  1930.                                 || (is_space  && ISSPACE (ch))
  1931.                                 || (is_upper  && ISUPPER (ch))
  1932.                                 || (is_xdigit && ISXDIGIT (ch)))
  1933.                   SET_LIST_BIT (ch);
  1934.                           }
  1935.                         had_char_class = true;
  1936.                       }
  1937.                     else
  1938.                       {
  1939.                         c1++;
  1940.                         while (c1--)    
  1941.                           PATUNFETCH;
  1942.                         SET_LIST_BIT ('[');
  1943.                         SET_LIST_BIT (':');
  1944.                         had_char_class = false;
  1945.                       }
  1946.                   }
  1947.                 else
  1948.                   {
  1949.                     had_char_class = false;
  1950.                     SET_LIST_BIT (c);
  1951.                   }
  1952.               }
  1953.  
  1954.             /* Discard any (non)matching list bytes that are all 0 at the
  1955.                end of the map.  Decrease the map-length byte too.  */
  1956.             while ((int) b[-1] > 0 && b[b[-1] - 1] == 0) 
  1957.               b[-1]--; 
  1958.             b += b[-1];
  1959.           }
  1960.           break;
  1961.  
  1962.  
  1963.     case '(':
  1964.           if (syntax & RE_NO_BK_PARENS)
  1965.             goto handle_open;
  1966.           else
  1967.             goto normal_char;
  1968.  
  1969.  
  1970.         case ')':
  1971.           if (syntax & RE_NO_BK_PARENS)
  1972.             goto handle_close;
  1973.           else
  1974.             goto normal_char;
  1975.  
  1976.  
  1977.         case '\n':
  1978.           if (syntax & RE_NEWLINE_ALT)
  1979.             goto handle_alt;
  1980.           else
  1981.             goto normal_char;
  1982.  
  1983.  
  1984.     case '|':
  1985.           if (syntax & RE_NO_BK_VBAR)
  1986.             goto handle_alt;
  1987.           else
  1988.             goto normal_char;
  1989.  
  1990.  
  1991.         case '{':
  1992.            if (syntax & RE_INTERVALS && syntax & RE_NO_BK_BRACES)
  1993.              goto handle_interval;
  1994.            else
  1995.              goto normal_char;
  1996.  
  1997.  
  1998.         case '\\':
  1999.           if (p == pend) FREE_STACK_RETURN (REG_EESCAPE);
  2000.  
  2001.           /* Do not translate the character after the \, so that we can
  2002.              distinguish, e.g., \B from \b, even if we normally would
  2003.              translate, e.g., B to b.  */
  2004.           PATFETCH_RAW (c);
  2005.  
  2006.           switch (c)
  2007.             {
  2008.             case '(':
  2009.               if (syntax & RE_NO_BK_PARENS)
  2010.                 goto normal_backslash;
  2011.  
  2012.             handle_open:
  2013.               bufp->re_nsub++;
  2014.               regnum++;
  2015.  
  2016.               if (COMPILE_STACK_FULL)
  2017.                 { 
  2018.                   RETALLOC (compile_stack.stack, compile_stack.size << 1,
  2019.                             compile_stack_elt_t);
  2020.                   if (compile_stack.stack == NULL) return REG_ESPACE;
  2021.  
  2022.                   compile_stack.size <<= 1;
  2023.                 }
  2024.  
  2025.               /* These are the values to restore when we hit end of this
  2026.                  group.  They are all relative offsets, so that if the
  2027.                  whole pattern moves because of realloc, they will still
  2028.                  be valid.  */
  2029.               COMPILE_STACK_TOP.begalt_offset = begalt - bufp->buffer;
  2030.               COMPILE_STACK_TOP.fixup_alt_jump 
  2031.                 = fixup_alt_jump ? fixup_alt_jump - bufp->buffer + 1 : 0;
  2032.               COMPILE_STACK_TOP.laststart_offset = b - bufp->buffer;
  2033.               COMPILE_STACK_TOP.regnum = regnum;
  2034.  
  2035.               /* We will eventually replace the 0 with the number of
  2036.                  groups inner to this one.  But do not push a
  2037.                  start_memory for groups beyond the last one we can
  2038.                  represent in the compiled pattern.  */
  2039.               if (regnum <= MAX_REGNUM)
  2040.                 {
  2041.                   COMPILE_STACK_TOP.inner_group_offset = b - bufp->buffer + 2;
  2042.                   BUF_PUSH_3 (start_memory, regnum, 0);
  2043.                 }
  2044.                 
  2045.               compile_stack.avail++;
  2046.  
  2047.               fixup_alt_jump = 0;
  2048.               laststart = 0;
  2049.               begalt = b;
  2050.           /* If we've reached MAX_REGNUM groups, then this open
  2051.          won't actually generate any code, so we'll have to
  2052.          clear pending_exact explicitly.  */
  2053.           pending_exact = 0;
  2054.               break;
  2055.  
  2056.  
  2057.             case ')':
  2058.               if (syntax & RE_NO_BK_PARENS) goto normal_backslash;
  2059.  
  2060.               if (COMPILE_STACK_EMPTY)
  2061.                 if (syntax & RE_UNMATCHED_RIGHT_PAREN_ORD)
  2062.                   goto normal_backslash;
  2063.                 else
  2064.                   FREE_STACK_RETURN (REG_ERPAREN);
  2065.  
  2066.             handle_close:
  2067.               if (fixup_alt_jump)
  2068.                 { /* Push a dummy failure point at the end of the
  2069.                      alternative for a possible future
  2070.                      `pop_failure_jump' to pop.  See comments at
  2071.                      `push_dummy_failure' in `re_match_2'.  */
  2072.                   BUF_PUSH (push_dummy_failure);
  2073.                   
  2074.                   /* We allocated space for this jump when we assigned
  2075.                      to `fixup_alt_jump', in the `handle_alt' case below.  */
  2076.                   STORE_JUMP (jump_past_alt, fixup_alt_jump, b - 1);
  2077.                 }
  2078.  
  2079.               /* See similar code for backslashed left paren above.  */
  2080.               if (COMPILE_STACK_EMPTY)
  2081.                 if (syntax & RE_UNMATCHED_RIGHT_PAREN_ORD)
  2082.                   goto normal_char;
  2083.                 else
  2084.                   FREE_STACK_RETURN (REG_ERPAREN);
  2085.  
  2086.               /* Since we just checked for an empty stack above, this
  2087.                  ``can't happen''.  */
  2088.               assert (compile_stack.avail != 0);
  2089.               {
  2090.                 /* We don't just want to restore into `regnum', because
  2091.                    later groups should continue to be numbered higher,
  2092.                    as in `(ab)c(de)' -- the second group is #2.  */
  2093.                 regnum_t this_group_regnum;
  2094.  
  2095.                 compile_stack.avail--;        
  2096.                 begalt = bufp->buffer + COMPILE_STACK_TOP.begalt_offset;
  2097.                 fixup_alt_jump
  2098.                   = COMPILE_STACK_TOP.fixup_alt_jump
  2099.                     ? bufp->buffer + COMPILE_STACK_TOP.fixup_alt_jump - 1 
  2100.                     : 0;
  2101.                 laststart = bufp->buffer + COMPILE_STACK_TOP.laststart_offset;
  2102.                 this_group_regnum = COMPILE_STACK_TOP.regnum;
  2103.         /* If we've reached MAX_REGNUM groups, then this open
  2104.            won't actually generate any code, so we'll have to
  2105.            clear pending_exact explicitly.  */
  2106.         pending_exact = 0;
  2107.  
  2108.                 /* We're at the end of the group, so now we know how many
  2109.                    groups were inside this one.  */
  2110.                 if (this_group_regnum <= MAX_REGNUM)
  2111.                   {
  2112.                     unsigned char *inner_group_loc
  2113.                       = bufp->buffer + COMPILE_STACK_TOP.inner_group_offset;
  2114.                     
  2115.                     *inner_group_loc = regnum - this_group_regnum;
  2116.                     BUF_PUSH_3 (stop_memory, this_group_regnum,
  2117.                                 regnum - this_group_regnum);
  2118.                   }
  2119.               }
  2120.               break;
  2121.  
  2122.  
  2123.             case '|':                    /* `\|'.  */
  2124.               if (syntax & RE_LIMITED_OPS || syntax & RE_NO_BK_VBAR)
  2125.                 goto normal_backslash;
  2126.             handle_alt:
  2127.               if (syntax & RE_LIMITED_OPS)
  2128.                 goto normal_char;
  2129.  
  2130.               /* Insert before the previous alternative a jump which
  2131.                  jumps to this alternative if the former fails.  */
  2132.               GET_BUFFER_SPACE (3);
  2133.               INSERT_JUMP (on_failure_jump, begalt, b + 6);
  2134.               pending_exact = 0;
  2135.               b += 3;
  2136.  
  2137.               /* The alternative before this one has a jump after it
  2138.                  which gets executed if it gets matched.  Adjust that
  2139.                  jump so it will jump to this alternative's analogous
  2140.                  jump (put in below, which in turn will jump to the next
  2141.                  (if any) alternative's such jump, etc.).  The last such
  2142.                  jump jumps to the correct final destination.  A picture:
  2143.                           _____ _____ 
  2144.                           |   | |   |   
  2145.                           |   v |   v 
  2146.                          a | b   | c   
  2147.  
  2148.                  If we are at `b', then fixup_alt_jump right now points to a
  2149.                  three-byte space after `a'.  We'll put in the jump, set
  2150.                  fixup_alt_jump to right after `b', and leave behind three
  2151.                  bytes which we'll fill in when we get to after `c'.  */
  2152.  
  2153.               if (fixup_alt_jump)
  2154.                 STORE_JUMP (jump_past_alt, fixup_alt_jump, b);
  2155.  
  2156.               /* Mark and leave space for a jump after this alternative,
  2157.                  to be filled in later either by next alternative or
  2158.                  when know we're at the end of a series of alternatives.  */
  2159.               fixup_alt_jump = b;
  2160.               GET_BUFFER_SPACE (3);
  2161.               b += 3;
  2162.  
  2163.               laststart = 0;
  2164.               begalt = b;
  2165.               break;
  2166.  
  2167.  
  2168.             case '{': 
  2169.               /* If \{ is a literal.  */
  2170.               if (!(syntax & RE_INTERVALS)
  2171.                      /* If we're at `\{' and it's not the open-interval 
  2172.                         operator.  */
  2173.                   || ((syntax & RE_INTERVALS) && (syntax & RE_NO_BK_BRACES))
  2174.                   || (p - 2 == pattern  &&  p == pend))
  2175.                 goto normal_backslash;
  2176.  
  2177.             handle_interval:
  2178.               {
  2179.                 /* If got here, then the syntax allows intervals.  */
  2180.  
  2181.                 /* At least (most) this many matches must be made.  */
  2182.                 int lower_bound = -1, upper_bound = -1;
  2183.  
  2184.                 beg_interval = p - 1;
  2185.  
  2186.                 if (p == pend)
  2187.                   {
  2188.                     if (syntax & RE_NO_BK_BRACES)
  2189.                       goto unfetch_interval;
  2190.                     else
  2191.                       FREE_STACK_RETURN (REG_EBRACE);
  2192.                   }
  2193.  
  2194.                 GET_UNSIGNED_NUMBER (lower_bound);
  2195.  
  2196.                 if (c == ',')
  2197.                   {
  2198.                     GET_UNSIGNED_NUMBER (upper_bound);
  2199.                     if (upper_bound < 0) upper_bound = RE_DUP_MAX;
  2200.                   }
  2201.                 else
  2202.                   /* Interval such as `{1}' => match exactly once. */
  2203.                   upper_bound = lower_bound;
  2204.  
  2205.                 if (lower_bound < 0 || upper_bound > RE_DUP_MAX
  2206.                     || lower_bound > upper_bound)
  2207.                   {
  2208.                     if (syntax & RE_NO_BK_BRACES)
  2209.                       goto unfetch_interval;
  2210.                     else 
  2211.                       FREE_STACK_RETURN (REG_BADBR);
  2212.                   }
  2213.  
  2214.                 if (!(syntax & RE_NO_BK_BRACES)) 
  2215.                   {
  2216.                     if (c != '\\') FREE_STACK_RETURN (REG_EBRACE);
  2217.  
  2218.                     PATFETCH (c);
  2219.                   }
  2220.  
  2221.                 if (c != '}')
  2222.                   {
  2223.                     if (syntax & RE_NO_BK_BRACES)
  2224.                       goto unfetch_interval;
  2225.                     else 
  2226.                       FREE_STACK_RETURN (REG_BADBR);
  2227.                   }
  2228.  
  2229.                 /* We just parsed a valid interval.  */
  2230.  
  2231.                 /* If it's invalid to have no preceding re.  */
  2232.                 if (!laststart)
  2233.                   {
  2234.                     if (syntax & RE_CONTEXT_INVALID_OPS)
  2235.                       FREE_STACK_RETURN (REG_BADRPT);
  2236.                     else if (syntax & RE_CONTEXT_INDEP_OPS)
  2237.                       laststart = b;
  2238.                     else
  2239.                       goto unfetch_interval;
  2240.                   }
  2241.  
  2242.                 /* If the upper bound is zero, don't want to succeed at
  2243.                    all; jump from `laststart' to `b + 3', which will be
  2244.                    the end of the buffer after we insert the jump.  */
  2245.                  if (upper_bound == 0)
  2246.                    {
  2247.                      GET_BUFFER_SPACE (3);
  2248.                      INSERT_JUMP (jump, laststart, b + 3);
  2249.                      b += 3;
  2250.                    }
  2251.  
  2252.                  /* Otherwise, we have a nontrivial interval.  When
  2253.                     we're all done, the pattern will look like:
  2254.                       set_number_at <jump count> <upper bound>
  2255.                       set_number_at <succeed_n count> <lower bound>
  2256.                       succeed_n <after jump addr> <succeed_n count>
  2257.                       <body of loop>
  2258.                       jump_n <succeed_n addr> <jump count>
  2259.                     (The upper bound and `jump_n' are omitted if
  2260.                     `upper_bound' is 1, though.)  */
  2261.                  else 
  2262.                    { /* If the upper bound is > 1, we need to insert
  2263.                         more at the end of the loop.  */
  2264.                      unsigned nbytes = 10 + (upper_bound > 1) * 10;
  2265.  
  2266.                      GET_BUFFER_SPACE (nbytes);
  2267.  
  2268.                      /* Initialize lower bound of the `succeed_n', even
  2269.                         though it will be set during matching by its
  2270.                         attendant `set_number_at' (inserted next),
  2271.                         because `re_compile_fastmap' needs to know.
  2272.                         Jump to the `jump_n' we might insert below.  */
  2273.                      INSERT_JUMP2 (succeed_n, laststart,
  2274.                                    b + 5 + (upper_bound > 1) * 5,
  2275.                                    lower_bound);
  2276.                      b += 5;
  2277.  
  2278.                      /* Code to initialize the lower bound.  Insert 
  2279.                         before the `succeed_n'.  The `5' is the last two
  2280.                         bytes of this `set_number_at', plus 3 bytes of
  2281.                         the following `succeed_n'.  */
  2282.                      insert_op2 (set_number_at, laststart, 5, lower_bound, b);
  2283.                      b += 5;
  2284.  
  2285.                      if (upper_bound > 1)
  2286.                        { /* More than one repetition is allowed, so
  2287.                             append a backward jump to the `succeed_n'
  2288.                             that starts this interval.
  2289.                             
  2290.                             When we've reached this during matching,
  2291.                             we'll have matched the interval once, so
  2292.                             jump back only `upper_bound - 1' times.  */
  2293.                          STORE_JUMP2 (jump_n, b, laststart + 5,
  2294.                                       upper_bound - 1);
  2295.                          b += 5;
  2296.  
  2297.                          /* The location we want to set is the second
  2298.                             parameter of the `jump_n'; that is `b-2' as
  2299.                             an absolute address.  `laststart' will be
  2300.                             the `set_number_at' we're about to insert;
  2301.                             `laststart+3' the number to set, the source
  2302.                             for the relative address.  But we are
  2303.                             inserting into the middle of the pattern --
  2304.                             so everything is getting moved up by 5.
  2305.                             Conclusion: (b - 2) - (laststart + 3) + 5,
  2306.                             i.e., b - laststart.
  2307.                             
  2308.                             We insert this at the beginning of the loop
  2309.                             so that if we fail during matching, we'll
  2310.                             reinitialize the bounds.  */
  2311.                          insert_op2 (set_number_at, laststart, b - laststart,
  2312.                                      upper_bound - 1, b);
  2313.                          b += 5;
  2314.                        }
  2315.                    }
  2316.                 pending_exact = 0;
  2317.                 beg_interval = NULL;
  2318.               }
  2319.               break;
  2320.  
  2321.             unfetch_interval:
  2322.               /* If an invalid interval, match the characters as literals.  */
  2323.                assert (beg_interval);
  2324.                p = beg_interval;
  2325.                beg_interval = NULL;
  2326.  
  2327.                /* normal_char and normal_backslash need `c'.  */
  2328.                PATFETCH (c);    
  2329.  
  2330.                if (!(syntax & RE_NO_BK_BRACES))
  2331.                  {
  2332.                    if (p > pattern  &&  p[-1] == '\\')
  2333.                      goto normal_backslash;
  2334.                  }
  2335.                goto normal_char;
  2336.  
  2337. #ifdef emacs
  2338.             /* There is no way to specify the before_dot and after_dot
  2339.                operators.  rms says this is ok.  --karl  */
  2340.             case '=':
  2341.               BUF_PUSH (at_dot);
  2342.               break;
  2343.  
  2344.             case 's':    
  2345.               laststart = b;
  2346.               PATFETCH (c);
  2347.               BUF_PUSH_2 (syntaxspec, syntax_spec_code[c]);
  2348.               break;
  2349.  
  2350.             case 'S':
  2351.               laststart = b;
  2352.               PATFETCH (c);
  2353.               BUF_PUSH_2 (notsyntaxspec, syntax_spec_code[c]);
  2354.               break;
  2355. #endif /* emacs */
  2356.  
  2357.  
  2358.             case 'w':
  2359.               laststart = b;
  2360.               BUF_PUSH (wordchar);
  2361.               break;
  2362.  
  2363.  
  2364.             case 'W':
  2365.               laststart = b;
  2366.               BUF_PUSH (notwordchar);
  2367.               break;
  2368.  
  2369.  
  2370.             case '<':
  2371.               BUF_PUSH (wordbeg);
  2372.               break;
  2373.  
  2374.             case '>':
  2375.               BUF_PUSH (wordend);
  2376.               break;
  2377.  
  2378.             case 'b':
  2379.               BUF_PUSH (wordbound);
  2380.               break;
  2381.  
  2382.             case 'B':
  2383.               BUF_PUSH (notwordbound);
  2384.               break;
  2385.  
  2386.             case '`':
  2387.               BUF_PUSH (begbuf);
  2388.               break;
  2389.  
  2390.             case '\'':
  2391.               BUF_PUSH (endbuf);
  2392.               break;
  2393.  
  2394.             case '1': case '2': case '3': case '4': case '5':
  2395.             case '6': case '7': case '8': case '9':
  2396.               if (syntax & RE_NO_BK_REFS)
  2397.                 goto normal_char;
  2398.  
  2399.               c1 = c - '0';
  2400.  
  2401.               if (c1 > regnum)
  2402.                 FREE_STACK_RETURN (REG_ESUBREG);
  2403.  
  2404.               /* Can't back reference to a subexpression if inside of it.  */
  2405.               if (group_in_compile_stack (compile_stack, c1))
  2406.                 goto normal_char;
  2407.  
  2408.               laststart = b;
  2409.               BUF_PUSH_2 (duplicate, c1);
  2410.               break;
  2411.  
  2412.  
  2413.             case '+':
  2414.             case '?':
  2415.               if (syntax & RE_BK_PLUS_QM)
  2416.                 goto handle_plus;
  2417.               else
  2418.                 goto normal_backslash;
  2419.  
  2420.             default:
  2421.             normal_backslash:
  2422.               /* You might think it would be useful for \ to mean
  2423.                  not to translate; but if we don't translate it
  2424.                  it will never match anything.  */
  2425.               c = TRANSLATE (c);
  2426.               goto normal_char;
  2427.             }
  2428.           break;
  2429.  
  2430.  
  2431.     default:
  2432.         /* Expects the character in `c'.  */
  2433.     normal_char:
  2434.           /* If no exactn currently being built.  */
  2435.           if (!pending_exact 
  2436.  
  2437.               /* If last exactn not at current position.  */
  2438.               || pending_exact + *pending_exact + 1 != b
  2439.               
  2440.               /* We have only one byte following the exactn for the count.  */
  2441.           || *pending_exact == (1 << BYTEWIDTH) - 1
  2442.  
  2443.               /* If followed by a repetition operator.  */
  2444.               || *p == '*' || *p == '^'
  2445.           || ((syntax & RE_BK_PLUS_QM)
  2446.           ? *p == '\\' && (p[1] == '+' || p[1] == '?')
  2447.           : (*p == '+' || *p == '?'))
  2448.           || ((syntax & RE_INTERVALS)
  2449.                   && ((syntax & RE_NO_BK_BRACES)
  2450.               ? *p == '{'
  2451.                       : (p[0] == '\\' && p[1] == '{'))))
  2452.         {
  2453.           /* Start building a new exactn.  */
  2454.               
  2455.               laststart = b;
  2456.  
  2457.           BUF_PUSH_2 (exactn, 0);
  2458.           pending_exact = b - 1;
  2459.             }
  2460.             
  2461.       BUF_PUSH (c);
  2462.           (*pending_exact)++;
  2463.       break;
  2464.         } /* switch (c) */
  2465.     } /* while p != pend */
  2466.  
  2467.   
  2468.   /* Through the pattern now.  */
  2469.   
  2470.   if (fixup_alt_jump)
  2471.     STORE_JUMP (jump_past_alt, fixup_alt_jump, b);
  2472.  
  2473.   if (!COMPILE_STACK_EMPTY) 
  2474.     FREE_STACK_RETURN (REG_EPAREN);
  2475.  
  2476.   free (compile_stack.stack);
  2477.  
  2478.   /* We have succeeded; set the length of the buffer.  */
  2479.   bufp->used = b - bufp->buffer;
  2480.  
  2481. #ifdef DEBUG
  2482.   if (debug)
  2483.     {
  2484.       DEBUG_PRINT1 ("\nCompiled pattern: \n");
  2485.       print_compiled_pattern (bufp);
  2486.     }
  2487. #endif /* DEBUG */
  2488.  
  2489. #ifndef MATCH_MAY_ALLOCATE
  2490.   /* Initialize the failure stack to the largest possible stack.  This
  2491.      isn't necessary unless we're trying to avoid calling alloca in
  2492.      the search and match routines.  */
  2493.   {
  2494.     int num_regs = bufp->re_nsub + 1;
  2495.  
  2496.     /* Since DOUBLE_FAIL_STACK refuses to double only if the current size
  2497.        is strictly greater than re_max_failures, the largest possible stack
  2498.        is 2 * re_max_failures failure points.  */
  2499.     if (fail_stack.size < (2 * re_max_failures * MAX_FAILURE_ITEMS))
  2500.       {
  2501.     fail_stack.size = (2 * re_max_failures * MAX_FAILURE_ITEMS);
  2502.  
  2503. #ifdef emacs
  2504.     if (! fail_stack.stack)
  2505.       fail_stack.stack
  2506.         = (fail_stack_elt_t *) xmalloc (fail_stack.size 
  2507.                         * sizeof (fail_stack_elt_t));
  2508.     else
  2509.       fail_stack.stack
  2510.         = (fail_stack_elt_t *) xrealloc (fail_stack.stack,
  2511.                          (fail_stack.size
  2512.                           * sizeof (fail_stack_elt_t)));
  2513. #else /* not emacs */
  2514.     if (! fail_stack.stack)
  2515.       fail_stack.stack
  2516.         = (fail_stack_elt_t *) malloc (fail_stack.size 
  2517.                        * sizeof (fail_stack_elt_t));
  2518.     else
  2519.       fail_stack.stack
  2520.         = (fail_stack_elt_t *) realloc (fail_stack.stack,
  2521.                         (fail_stack.size
  2522.                          * sizeof (fail_stack_elt_t)));
  2523. #endif /* not emacs */
  2524.       }
  2525.  
  2526.     /* Initialize some other variables the matcher uses.  */
  2527.     RETALLOC_IF (regstart,     num_regs, const char *);
  2528.     RETALLOC_IF (regend,     num_regs, const char *);
  2529.     RETALLOC_IF (old_regstart,     num_regs, const char *);
  2530.     RETALLOC_IF (old_regend,     num_regs, const char *);
  2531.     RETALLOC_IF (best_regstart,  num_regs, const char *);
  2532.     RETALLOC_IF (best_regend,     num_regs, const char *);
  2533.     RETALLOC_IF (reg_info,     num_regs, register_info_type);
  2534.     RETALLOC_IF (reg_dummy,     num_regs, const char *);
  2535.     RETALLOC_IF (reg_info_dummy, num_regs, register_info_type);
  2536.   }
  2537. #endif
  2538.  
  2539.   return REG_NOERROR;
  2540. } /* regex_compile */
  2541.  
  2542. /* Subroutines for `regex_compile'.  */
  2543.  
  2544. /* Store OP at LOC followed by two-byte integer parameter ARG.  */
  2545.  
  2546. static void
  2547. store_op1 (op, loc, arg)
  2548.     re_opcode_t op;
  2549.     unsigned char *loc;
  2550.     int arg;
  2551. {
  2552.   *loc = (unsigned char) op;
  2553.   STORE_NUMBER (loc + 1, arg);
  2554. }
  2555.  
  2556.  
  2557. /* Like `store_op1', but for two two-byte parameters ARG1 and ARG2.  */
  2558.  
  2559. static void
  2560. store_op2 (op, loc, arg1, arg2)
  2561.     re_opcode_t op;
  2562.     unsigned char *loc;
  2563.     int arg1, arg2;
  2564. {
  2565.   *loc = (unsigned char) op;
  2566.   STORE_NUMBER (loc + 1, arg1);
  2567.   STORE_NUMBER (loc + 3, arg2);
  2568. }
  2569.  
  2570.  
  2571. /* Copy the bytes from LOC to END to open up three bytes of space at LOC
  2572.    for OP followed by two-byte integer parameter ARG.  */
  2573.  
  2574. static void
  2575. insert_op1 (op, loc, arg, end)
  2576.     re_opcode_t op;
  2577.     unsigned char *loc;
  2578.     int arg;
  2579.     unsigned char *end;    
  2580. {
  2581.   register unsigned char *pfrom = end;
  2582.   register unsigned char *pto = end + 3;
  2583.  
  2584.   while (pfrom != loc)
  2585.     *--pto = *--pfrom;
  2586.     
  2587.   store_op1 (op, loc, arg);
  2588. }
  2589.  
  2590.  
  2591. /* Like `insert_op1', but for two two-byte parameters ARG1 and ARG2.  */
  2592.  
  2593. static void
  2594. insert_op2 (op, loc, arg1, arg2, end)
  2595.     re_opcode_t op;
  2596.     unsigned char *loc;
  2597.     int arg1, arg2;
  2598.     unsigned char *end;    
  2599. {
  2600.   register unsigned char *pfrom = end;
  2601.   register unsigned char *pto = end + 5;
  2602.  
  2603.   while (pfrom != loc)
  2604.     *--pto = *--pfrom;
  2605.     
  2606.   store_op2 (op, loc, arg1, arg2);
  2607. }
  2608.  
  2609.  
  2610. /* P points to just after a ^ in PATTERN.  Return true if that ^ comes
  2611.    after an alternative or a begin-subexpression.  We assume there is at
  2612.    least one character before the ^.  */
  2613.  
  2614. static boolean
  2615. at_begline_loc_p (pattern, p, syntax)
  2616.     const char *pattern, *p;
  2617.     reg_syntax_t syntax;
  2618. {
  2619.   const char *prev = p - 2;
  2620.   boolean prev_prev_backslash = prev > pattern && prev[-1] == '\\';
  2621.   
  2622.   return
  2623.        /* After a subexpression?  */
  2624.        (*prev == '(' && (syntax & RE_NO_BK_PARENS || prev_prev_backslash))
  2625.        /* After an alternative?  */
  2626.     || (*prev == '|' && (syntax & RE_NO_BK_VBAR || prev_prev_backslash));
  2627. }
  2628.  
  2629.  
  2630. /* The dual of at_begline_loc_p.  This one is for $.  We assume there is
  2631.    at least one character after the $, i.e., `P < PEND'.  */
  2632.  
  2633. static boolean
  2634. at_endline_loc_p (p, pend, syntax)
  2635.     const char *p, *pend;
  2636.     int syntax;
  2637. {
  2638.   const char *next = p;
  2639.   boolean next_backslash = *next == '\\';
  2640.   const char *next_next = p + 1 < pend ? p + 1 : NULL;
  2641.   
  2642.   return
  2643.        /* Before a subexpression?  */
  2644.        (syntax & RE_NO_BK_PARENS ? *next == ')'
  2645.         : next_backslash && next_next && *next_next == ')')
  2646.        /* Before an alternative?  */
  2647.     || (syntax & RE_NO_BK_VBAR ? *next == '|'
  2648.         : next_backslash && next_next && *next_next == '|');
  2649. }
  2650.  
  2651.  
  2652. /* Returns true if REGNUM is in one of COMPILE_STACK's elements and 
  2653.    false if it's not.  */
  2654.  
  2655. static boolean
  2656. group_in_compile_stack (compile_stack, regnum)
  2657.     compile_stack_type compile_stack;
  2658.     regnum_t regnum;
  2659. {
  2660.   int this_element;
  2661.  
  2662.   for (this_element = compile_stack.avail - 1;  
  2663.        this_element >= 0; 
  2664.        this_element--)
  2665.     if (compile_stack.stack[this_element].regnum == regnum)
  2666.       return true;
  2667.  
  2668.   return false;
  2669. }
  2670.  
  2671.  
  2672. /* Read the ending character of a range (in a bracket expression) from the
  2673.    uncompiled pattern *P_PTR (which ends at PEND).  We assume the
  2674.    starting character is in `P[-2]'.  (`P[-1]' is the character `-'.)
  2675.    Then we set the translation of all bits between the starting and
  2676.    ending characters (inclusive) in the compiled pattern B.
  2677.    
  2678.    Return an error code.
  2679.    
  2680.    We use these short variable names so we can use the same macros as
  2681.    `regex_compile' itself.  */
  2682.  
  2683. static reg_errcode_t
  2684. compile_range (p_ptr, pend, translate, syntax, b)
  2685.     const char **p_ptr, *pend;
  2686.     char *translate;
  2687.     reg_syntax_t syntax;
  2688.     unsigned char *b;
  2689. {
  2690.   unsigned this_char;
  2691.  
  2692.   const char *p = *p_ptr;
  2693.   int range_start, range_end;
  2694.   
  2695.   if (p == pend)
  2696.     return REG_ERANGE;
  2697.  
  2698.   /* Even though the pattern is a signed `char *', we need to fetch
  2699.      with unsigned char *'s; if the high bit of the pattern character
  2700.      is set, the range endpoints will be negative if we fetch using a
  2701.      signed char *.
  2702.  
  2703.      We also want to fetch the endpoints without translating them; the 
  2704.      appropriate translation is done in the bit-setting loop below.  */
  2705.   /* The SVR4 compiler on the 3B2 had trouble with unsigned const char *.  */
  2706.   range_start = ((const unsigned char *) p)[-2];
  2707.   range_end   = ((const unsigned char *) p)[0];
  2708.  
  2709.   /* Have to increment the pointer into the pattern string, so the
  2710.      caller isn't still at the ending character.  */
  2711.   (*p_ptr)++;
  2712.  
  2713.   /* If the start is after the end, the range is empty.  */
  2714.   if (range_start > range_end)
  2715.     return syntax & RE_NO_EMPTY_RANGES ? REG_ERANGE : REG_NOERROR;
  2716.  
  2717.   /* Here we see why `this_char' has to be larger than an `unsigned
  2718.      char' -- the range is inclusive, so if `range_end' == 0xff
  2719.      (assuming 8-bit characters), we would otherwise go into an infinite
  2720.      loop, since all characters <= 0xff.  */
  2721.   for (this_char = range_start; this_char <= range_end; this_char++)
  2722.     {
  2723.       SET_LIST_BIT (TRANSLATE (this_char));
  2724.     }
  2725.   
  2726.   return REG_NOERROR;
  2727. }
  2728.  
  2729. /* re_compile_fastmap computes a ``fastmap'' for the compiled pattern in
  2730.    BUFP.  A fastmap records which of the (1 << BYTEWIDTH) possible
  2731.    characters can start a string that matches the pattern.  This fastmap
  2732.    is used by re_search to skip quickly over impossible starting points.
  2733.  
  2734.    The caller must supply the address of a (1 << BYTEWIDTH)-byte data
  2735.    area as BUFP->fastmap.
  2736.    
  2737.    We set the `fastmap', `fastmap_accurate', and `can_be_null' fields in
  2738.    the pattern buffer.
  2739.  
  2740.    Returns 0 if we succeed, -2 if an internal error.   */
  2741.  
  2742. int
  2743. re_compile_fastmap (bufp)
  2744.      struct re_pattern_buffer *bufp;
  2745. {
  2746.   int j, k;
  2747. #ifdef MATCH_MAY_ALLOCATE
  2748.   fail_stack_type fail_stack;
  2749. #endif
  2750. #ifndef REGEX_MALLOC
  2751.   char *destination;
  2752. #endif
  2753.   /* We don't push any register information onto the failure stack.  */
  2754.   unsigned num_regs = 0;
  2755.   
  2756.   register char *fastmap = bufp->fastmap;
  2757.   unsigned char *pattern = bufp->buffer;
  2758.   unsigned long size = bufp->used;
  2759.   unsigned char *p = pattern;
  2760.   register unsigned char *pend = pattern + size;
  2761.  
  2762.   /* Assume that each path through the pattern can be null until
  2763.      proven otherwise.  We set this false at the bottom of switch
  2764.      statement, to which we get only if a particular path doesn't
  2765.      match the empty string.  */
  2766.   boolean path_can_be_null = true;
  2767.  
  2768.   /* We aren't doing a `succeed_n' to begin with.  */
  2769.   boolean succeed_n_p = false;
  2770.  
  2771.   assert (fastmap != NULL && p != NULL);
  2772.   
  2773.   INIT_FAIL_STACK ();
  2774.   bzero (fastmap, 1 << BYTEWIDTH);  /* Assume nothing's valid.  */
  2775.   bufp->fastmap_accurate = 1;        /* It will be when we're done.  */
  2776.   bufp->can_be_null = 0;
  2777.       
  2778.   while (p != pend || !FAIL_STACK_EMPTY ())
  2779.     {
  2780.       if (p == pend)
  2781.         {
  2782.           bufp->can_be_null |= path_can_be_null;
  2783.           
  2784.           /* Reset for next path.  */
  2785.           path_can_be_null = true;
  2786.           
  2787.           p = fail_stack.stack[--fail_stack.avail];
  2788.     }
  2789.  
  2790.       /* We should never be about to go beyond the end of the pattern.  */
  2791.       assert (p < pend);
  2792.       
  2793. #ifdef SWITCH_ENUM_BUG
  2794.       switch ((int) ((re_opcode_t) *p++))
  2795. #else
  2796.       switch ((re_opcode_t) *p++)
  2797. #endif
  2798.     {
  2799.  
  2800.         /* I guess the idea here is to simply not bother with a fastmap
  2801.            if a backreference is used, since it's too hard to figure out
  2802.            the fastmap for the corresponding group.  Setting
  2803.            `can_be_null' stops `re_search_2' from using the fastmap, so
  2804.            that is all we do.  */
  2805.     case duplicate:
  2806.       bufp->can_be_null = 1;
  2807.           return 0;
  2808.  
  2809.  
  2810.       /* Following are the cases which match a character.  These end
  2811.          with `break'.  */
  2812.  
  2813.     case exactn:
  2814.           fastmap[p[1]] = 1;
  2815.       break;
  2816.  
  2817.  
  2818.         case charset:
  2819.           for (j = *p++ * BYTEWIDTH - 1; j >= 0; j--)
  2820.         if (p[j / BYTEWIDTH] & (1 << (j % BYTEWIDTH)))
  2821.               fastmap[j] = 1;
  2822.       break;
  2823.  
  2824.  
  2825.     case charset_not:
  2826.       /* Chars beyond end of map must be allowed.  */
  2827.       for (j = *p * BYTEWIDTH; j < (1 << BYTEWIDTH); j++)
  2828.             fastmap[j] = 1;
  2829.  
  2830.       for (j = *p++ * BYTEWIDTH - 1; j >= 0; j--)
  2831.         if (!(p[j / BYTEWIDTH] & (1 << (j % BYTEWIDTH))))
  2832.               fastmap[j] = 1;
  2833.           break;
  2834.  
  2835.  
  2836.     case wordchar:
  2837.       for (j = 0; j < (1 << BYTEWIDTH); j++)
  2838.         if (SYNTAX (j) == Sword)
  2839.           fastmap[j] = 1;
  2840.       break;
  2841.  
  2842.  
  2843.     case notwordchar:
  2844.       for (j = 0; j < (1 << BYTEWIDTH); j++)
  2845.         if (SYNTAX (j) != Sword)
  2846.           fastmap[j] = 1;
  2847.       break;
  2848.  
  2849.  
  2850.         case anychar:
  2851.       {
  2852.         int fastmap_newline = fastmap['\n'];
  2853.  
  2854.         /* `.' matches anything ...  */
  2855.         for (j = 0; j < (1 << BYTEWIDTH); j++)
  2856.           fastmap[j] = 1;
  2857.  
  2858.         /* ... except perhaps newline.  */
  2859.         if (!(bufp->syntax & RE_DOT_NEWLINE))
  2860.           fastmap['\n'] = fastmap_newline;
  2861.  
  2862.         /* Return if we have already set `can_be_null'; if we have,
  2863.            then the fastmap is irrelevant.  Something's wrong here.  */
  2864.         else if (bufp->can_be_null)
  2865.           return 0;
  2866.  
  2867.         /* Otherwise, have to check alternative paths.  */
  2868.         break;
  2869.       }
  2870.  
  2871. #ifdef emacs
  2872.         case syntaxspec:
  2873.       k = *p++;
  2874.       for (j = 0; j < (1 << BYTEWIDTH); j++)
  2875.         if (SYNTAX (j) == (enum syntaxcode) k)
  2876.           fastmap[j] = 1;
  2877.       break;
  2878.  
  2879.  
  2880.     case notsyntaxspec:
  2881.       k = *p++;
  2882.       for (j = 0; j < (1 << BYTEWIDTH); j++)
  2883.         if (SYNTAX (j) != (enum syntaxcode) k)
  2884.           fastmap[j] = 1;
  2885.       break;
  2886.  
  2887.  
  2888.       /* All cases after this match the empty string.  These end with
  2889.          `continue'.  */
  2890.  
  2891.  
  2892.     case before_dot:
  2893.     case at_dot:
  2894.     case after_dot:
  2895.           continue;
  2896. #endif /* not emacs */
  2897.  
  2898.  
  2899.         case no_op:
  2900.         case begline:
  2901.         case endline:
  2902.     case begbuf:
  2903.     case endbuf:
  2904.     case wordbound:
  2905.     case notwordbound:
  2906.     case wordbeg:
  2907.     case wordend:
  2908.         case push_dummy_failure:
  2909.           continue;
  2910.  
  2911.  
  2912.     case jump_n:
  2913.         case pop_failure_jump:
  2914.     case maybe_pop_jump:
  2915.     case jump:
  2916.         case jump_past_alt:
  2917.     case dummy_failure_jump:
  2918.           EXTRACT_NUMBER_AND_INCR (j, p);
  2919.       p += j;    
  2920.       if (j > 0)
  2921.         continue;
  2922.             
  2923.           /* Jump backward implies we just went through the body of a
  2924.              loop and matched nothing.  Opcode jumped to should be
  2925.              `on_failure_jump' or `succeed_n'.  Just treat it like an
  2926.              ordinary jump.  For a * loop, it has pushed its failure
  2927.              point already; if so, discard that as redundant.  */
  2928.           if ((re_opcode_t) *p != on_failure_jump
  2929.           && (re_opcode_t) *p != succeed_n)
  2930.         continue;
  2931.  
  2932.           p++;
  2933.           EXTRACT_NUMBER_AND_INCR (j, p);
  2934.           p += j;        
  2935.       
  2936.           /* If what's on the stack is where we are now, pop it.  */
  2937.           if (!FAIL_STACK_EMPTY () 
  2938.           && fail_stack.stack[fail_stack.avail - 1] == p)
  2939.             fail_stack.avail--;
  2940.  
  2941.           continue;
  2942.  
  2943.  
  2944.         case on_failure_jump:
  2945.         case on_failure_keep_string_jump:
  2946.     handle_on_failure_jump:
  2947.           EXTRACT_NUMBER_AND_INCR (j, p);
  2948.  
  2949.           /* For some patterns, e.g., `(a?)?', `p+j' here points to the
  2950.              end of the pattern.  We don't want to push such a point,
  2951.              since when we restore it above, entering the switch will
  2952.              increment `p' past the end of the pattern.  We don't need
  2953.              to push such a point since we obviously won't find any more
  2954.              fastmap entries beyond `pend'.  Such a pattern can match
  2955.              the null string, though.  */
  2956.           if (p + j < pend)
  2957.             {
  2958.               if (!PUSH_PATTERN_OP (p + j, fail_stack))
  2959.                 return -2;
  2960.             }
  2961.           else
  2962.             bufp->can_be_null = 1;
  2963.  
  2964.           if (succeed_n_p)
  2965.             {
  2966.               EXTRACT_NUMBER_AND_INCR (k, p);    /* Skip the n.  */
  2967.               succeed_n_p = false;
  2968.         }
  2969.  
  2970.           continue;
  2971.  
  2972.  
  2973.     case succeed_n:
  2974.           /* Get to the number of times to succeed.  */
  2975.           p += 2;        
  2976.  
  2977.           /* Increment p past the n for when k != 0.  */
  2978.           EXTRACT_NUMBER_AND_INCR (k, p);
  2979.           if (k == 0)
  2980.         {
  2981.               p -= 4;
  2982.             succeed_n_p = true;  /* Spaghetti code alert.  */
  2983.               goto handle_on_failure_jump;
  2984.             }
  2985.           continue;
  2986.  
  2987.  
  2988.     case set_number_at:
  2989.           p += 4;
  2990.           continue;
  2991.  
  2992.  
  2993.     case start_memory:
  2994.         case stop_memory:
  2995.       p += 2;
  2996.       continue;
  2997.  
  2998.  
  2999.     default:
  3000.           abort (); /* We have listed all the cases.  */
  3001.         } /* switch *p++ */
  3002.  
  3003.       /* Getting here means we have found the possible starting
  3004.          characters for one path of the pattern -- and that the empty
  3005.          string does not match.  We need not follow this path further.
  3006.          Instead, look at the next alternative (remembered on the
  3007.          stack), or quit if no more.  The test at the top of the loop
  3008.          does these things.  */
  3009.       path_can_be_null = false;
  3010.       p = pend;
  3011.     } /* while p */
  3012.  
  3013.   /* Set `can_be_null' for the last path (also the first path, if the
  3014.      pattern is empty).  */
  3015.   bufp->can_be_null |= path_can_be_null;
  3016.   return 0;
  3017. } /* re_compile_fastmap */
  3018.  
  3019. /* Set REGS to hold NUM_REGS registers, storing them in STARTS and
  3020.    ENDS.  Subsequent matches using PATTERN_BUFFER and REGS will use
  3021.    this memory for recording register information.  STARTS and ENDS
  3022.    must be allocated using the malloc library routine, and must each
  3023.    be at least NUM_REGS * sizeof (regoff_t) bytes long.
  3024.  
  3025.    If NUM_REGS == 0, then subsequent matches should allocate their own
  3026.    register data.
  3027.  
  3028.    Unless this function is called, the first search or match using
  3029.    PATTERN_BUFFER will allocate its own register data, without
  3030.    freeing the old data.  */
  3031.  
  3032. void
  3033. re_set_registers (bufp, regs, num_regs, starts, ends)
  3034.     struct re_pattern_buffer *bufp;
  3035.     struct re_registers *regs;
  3036.     unsigned num_regs;
  3037.     regoff_t *starts, *ends;
  3038. {
  3039.   if (num_regs)
  3040.     {
  3041.       bufp->regs_allocated = REGS_REALLOCATE;
  3042.       regs->num_regs = num_regs;
  3043.       regs->start = starts;
  3044.       regs->end = ends;
  3045.     }
  3046.   else
  3047.     {
  3048.       bufp->regs_allocated = REGS_UNALLOCATED;
  3049.       regs->num_regs = 0;
  3050.       regs->start = regs->end = (regoff_t *) 0;
  3051.     }
  3052. }
  3053.  
  3054. /* Searching routines.  */
  3055.  
  3056. /* Like re_search_2, below, but only one string is specified, and
  3057.    doesn't let you say where to stop matching. */
  3058.  
  3059. int
  3060. re_search (bufp, string, size, startpos, range, regs)
  3061.      struct re_pattern_buffer *bufp;
  3062.      const char *string;
  3063.      int size, startpos, range;
  3064.      struct re_registers *regs;
  3065. {
  3066.   return re_search_2 (bufp, NULL, 0, string, size, startpos, range, 
  3067.               regs, size);
  3068. }
  3069.  
  3070.  
  3071. /* Using the compiled pattern in BUFP->buffer, first tries to match the
  3072.    virtual concatenation of STRING1 and STRING2, starting first at index
  3073.    STARTPOS, then at STARTPOS + 1, and so on.
  3074.    
  3075.    STRING1 and STRING2 have length SIZE1 and SIZE2, respectively.
  3076.    
  3077.    RANGE is how far to scan while trying to match.  RANGE = 0 means try
  3078.    only at STARTPOS; in general, the last start tried is STARTPOS +
  3079.    RANGE.
  3080.    
  3081.    In REGS, return the indices of the virtual concatenation of STRING1
  3082.    and STRING2 that matched the entire BUFP->buffer and its contained
  3083.    subexpressions.
  3084.    
  3085.    Do not consider matching one past the index STOP in the virtual
  3086.    concatenation of STRING1 and STRING2.
  3087.  
  3088.    We return either the position in the strings at which the match was
  3089.    found, -1 if no match, or -2 if error (such as failure
  3090.    stack overflow).  */
  3091.  
  3092. int
  3093. re_search_2 (bufp, string1, size1, string2, size2, startpos, range, regs, stop)
  3094.      struct re_pattern_buffer *bufp;
  3095.      const char *string1, *string2;
  3096.      int size1, size2;
  3097.      int startpos;
  3098.      int range;
  3099.      struct re_registers *regs;
  3100.      int stop;
  3101. {
  3102.   int val;
  3103.   register char *fastmap = bufp->fastmap;
  3104.   register char *translate = bufp->translate;
  3105.   int total_size = size1 + size2;
  3106.   int endpos = startpos + range;
  3107.  
  3108.   /* Check for out-of-range STARTPOS.  */
  3109.   if (startpos < 0 || startpos > total_size)
  3110.     return -1;
  3111.     
  3112.   /* Fix up RANGE if it might eventually take us outside
  3113.      the virtual concatenation of STRING1 and STRING2.  */
  3114.   if (endpos < -1)
  3115.     range = -1 - startpos;
  3116.   else if (endpos > total_size)
  3117.     range = total_size - startpos;
  3118.  
  3119.   /* If the search isn't to be a backwards one, don't waste time in a
  3120.      search for a pattern that must be anchored.  */
  3121.   if (bufp->used > 0 && (re_opcode_t) bufp->buffer[0] == begbuf && range > 0)
  3122.     {
  3123.       if (startpos > 0)
  3124.     return -1;
  3125.       else
  3126.     range = 1;
  3127.     }
  3128.  
  3129.   /* Update the fastmap now if not correct already.  */
  3130.   if (fastmap && !bufp->fastmap_accurate)
  3131.     if (re_compile_fastmap (bufp) == -2)
  3132.       return -2;
  3133.   
  3134.   /* Loop through the string, looking for a place to start matching.  */
  3135.   for (;;)
  3136.     { 
  3137.       /* If a fastmap is supplied, skip quickly over characters that
  3138.          cannot be the start of a match.  If the pattern can match the
  3139.          null string, however, we don't need to skip characters; we want
  3140.          the first null string.  */
  3141.       if (fastmap && startpos < total_size && !bufp->can_be_null)
  3142.     {
  3143.       if (range > 0)    /* Searching forwards.  */
  3144.         {
  3145.           register const char *d;
  3146.           register int lim = 0;
  3147.           int irange = range;
  3148.  
  3149.               if (startpos < size1 && startpos + range >= size1)
  3150.                 lim = range - (size1 - startpos);
  3151.  
  3152.           d = (startpos >= size1 ? string2 - size1 : string1) + startpos;
  3153.    
  3154.               /* Written out as an if-else to avoid testing `translate'
  3155.                  inside the loop.  */
  3156.           if (translate)
  3157.                 while (range > lim
  3158.                        && !fastmap[(unsigned char)
  3159.                    translate[(unsigned char) *d++]])
  3160.                   range--;
  3161.           else
  3162.                 while (range > lim && !fastmap[(unsigned char) *d++])
  3163.                   range--;
  3164.  
  3165.           startpos += irange - range;
  3166.         }
  3167.       else                /* Searching backwards.  */
  3168.         {
  3169.           register char c = (size1 == 0 || startpos >= size1
  3170.                                  ? string2[startpos - size1] 
  3171.                                  : string1[startpos]);
  3172.  
  3173.           if (!fastmap[(unsigned char) TRANSLATE (c)])
  3174.         goto advance;
  3175.         }
  3176.     }
  3177.  
  3178.       /* If can't match the null string, and that's all we have left, fail.  */
  3179.       if (range >= 0 && startpos == total_size && fastmap
  3180.           && !bufp->can_be_null)
  3181.     return -1;
  3182.  
  3183.       val = re_match_2_internal (bufp, string1, size1, string2, size2,
  3184.                  startpos, regs, stop);
  3185. #ifndef REGEX_MALLOC
  3186. #ifdef C_ALLOCA
  3187.       alloca (0);
  3188. #endif
  3189. #endif
  3190.  
  3191.       if (val >= 0)
  3192.     return startpos;
  3193.         
  3194.       if (val == -2)
  3195.     return -2;
  3196.  
  3197.     advance:
  3198.       if (!range) 
  3199.         break;
  3200.       else if (range > 0) 
  3201.         {
  3202.           range--; 
  3203.           startpos++;
  3204.         }
  3205.       else
  3206.         {
  3207.           range++; 
  3208.           startpos--;
  3209.         }
  3210.     }
  3211.   return -1;
  3212. } /* re_search_2 */
  3213.  
  3214. /* Declarations and macros for re_match_2.  */
  3215.  
  3216. static int bcmp_translate ();
  3217. static boolean alt_match_null_string_p (),
  3218.                common_op_match_null_string_p (),
  3219.                group_match_null_string_p ();
  3220.  
  3221. /* This converts PTR, a pointer into one of the search strings `string1'
  3222.    and `string2' into an offset from the beginning of that string.  */
  3223. #define POINTER_TO_OFFSET(ptr)            \
  3224.   (FIRST_STRING_P (ptr)                \
  3225.    ? ((regoff_t) ((ptr) - string1))        \
  3226.    : ((regoff_t) ((ptr) - string2 + size1)))
  3227.  
  3228. /* Macros for dealing with the split strings in re_match_2.  */
  3229.  
  3230. #define MATCHING_IN_FIRST_STRING  (dend == end_match_1)
  3231.  
  3232. /* Call before fetching a character with *d.  This switches over to
  3233.    string2 if necessary.  */
  3234. #define PREFETCH()                            \
  3235.   while (d == dend)                                \
  3236.     {                                    \
  3237.       /* End of string2 => fail.  */                    \
  3238.       if (dend == end_match_2)                         \
  3239.         goto fail;                            \
  3240.       /* End of string1 => advance to string2.  */             \
  3241.       d = string2;                                \
  3242.       dend = end_match_2;                        \
  3243.     }
  3244.  
  3245.  
  3246. /* Test if at very beginning or at very end of the virtual concatenation
  3247.    of `string1' and `string2'.  If only one string, it's `string2'.  */
  3248. #define AT_STRINGS_BEG(d) ((d) == (size1 ? string1 : string2) || !size2)
  3249. #define AT_STRINGS_END(d) ((d) == end2)    
  3250.  
  3251.  
  3252. /* Test if D points to a character which is word-constituent.  We have
  3253.    two special cases to check for: if past the end of string1, look at
  3254.    the first character in string2; and if before the beginning of
  3255.    string2, look at the last character in string1.  */
  3256. #define WORDCHAR_P(d)                            \
  3257.   (SYNTAX ((d) == end1 ? *string2                    \
  3258.            : (d) == string2 - 1 ? *(end1 - 1) : *(d))            \
  3259.    == Sword)
  3260.  
  3261. /* Test if the character before D and the one at D differ with respect
  3262.    to being word-constituent.  */
  3263. #define AT_WORD_BOUNDARY(d)                        \
  3264.   (AT_STRINGS_BEG (d) || AT_STRINGS_END (d)                \
  3265.    || WORDCHAR_P (d - 1) != WORDCHAR_P (d))
  3266.  
  3267.  
  3268. /* Free everything we malloc.  */
  3269. #ifdef MATCH_MAY_ALLOCATE
  3270. #ifdef REGEX_MALLOC
  3271. #define FREE_VAR(var) if (var) free (var); var = NULL
  3272. #define FREE_VARIABLES()                        \
  3273.   do {                                    \
  3274.     FREE_VAR (fail_stack.stack);                    \
  3275.     FREE_VAR (regstart);                        \
  3276.     FREE_VAR (regend);                            \
  3277.     FREE_VAR (old_regstart);                        \
  3278.     FREE_VAR (old_regend);                        \
  3279.     FREE_VAR (best_regstart);                        \
  3280.     FREE_VAR (best_regend);                        \
  3281.     FREE_VAR (reg_info);                        \
  3282.     FREE_VAR (reg_dummy);                        \
  3283.     FREE_VAR (reg_info_dummy);                        \
  3284.   } while (0)
  3285. #else /* not REGEX_MALLOC */
  3286. /* This used to do alloca (0), but now we do that in the caller.  */
  3287. #define FREE_VARIABLES() /* Nothing */
  3288. #endif /* not REGEX_MALLOC */
  3289. #else
  3290. #define FREE_VARIABLES() /* Do nothing!  */
  3291. #endif /* not MATCH_MAY_ALLOCATE */
  3292.  
  3293. /* These values must meet several constraints.  They must not be valid
  3294.    register values; since we have a limit of 255 registers (because
  3295.    we use only one byte in the pattern for the register number), we can
  3296.    use numbers larger than 255.  They must differ by 1, because of
  3297.    NUM_FAILURE_ITEMS above.  And the value for the lowest register must
  3298.    be larger than the value for the highest register, so we do not try
  3299.    to actually save any registers when none are active.  */
  3300. #define NO_HIGHEST_ACTIVE_REG (1 << BYTEWIDTH)
  3301. #define NO_LOWEST_ACTIVE_REG (NO_HIGHEST_ACTIVE_REG + 1)
  3302.  
  3303. /* Matching routines.  */
  3304.  
  3305. #ifndef emacs   /* Emacs never uses this.  */
  3306. /* re_match is like re_match_2 except it takes only a single string.  */
  3307.  
  3308. int
  3309. re_match (bufp, string, size, pos, regs)
  3310.      struct re_pattern_buffer *bufp;
  3311.      const char *string;
  3312.      int size, pos;
  3313.      struct re_registers *regs;
  3314. {
  3315.   int result = re_match_2_internal (bufp, NULL, 0, string, size,
  3316.                     pos, regs, size);
  3317.   alloca (0);
  3318.   return result;
  3319. }
  3320. #endif /* not emacs */
  3321.  
  3322.  
  3323. /* re_match_2 matches the compiled pattern in BUFP against the
  3324.    the (virtual) concatenation of STRING1 and STRING2 (of length SIZE1
  3325.    and SIZE2, respectively).  We start matching at POS, and stop
  3326.    matching at STOP.
  3327.    
  3328.    If REGS is non-null and the `no_sub' field of BUFP is nonzero, we
  3329.    store offsets for the substring each group matched in REGS.  See the
  3330.    documentation for exactly how many groups we fill.
  3331.  
  3332.    We return -1 if no match, -2 if an internal error (such as the
  3333.    failure stack overflowing).  Otherwise, we return the length of the
  3334.    matched substring.  */
  3335.  
  3336. int
  3337. re_match_2 (bufp, string1, size1, string2, size2, pos, regs, stop)
  3338.      struct re_pattern_buffer *bufp;
  3339.      const char *string1, *string2;
  3340.      int size1, size2;
  3341.      int pos;
  3342.      struct re_registers *regs;
  3343.      int stop;
  3344. {
  3345.   int result = re_match_2_internal (bufp, string1, size1, string2, size2,
  3346.                     pos, regs, stop);
  3347.   alloca (0);
  3348.   return result;
  3349. }
  3350.  
  3351. /* This is a separate function so that we can force an alloca cleanup
  3352.    afterwards.  */
  3353. static int
  3354. re_match_2_internal (bufp, string1, size1, string2, size2, pos, regs, stop)
  3355.      struct re_pattern_buffer *bufp;
  3356.      const char *string1, *string2;
  3357.      int size1, size2;
  3358.      int pos;
  3359.      struct re_registers *regs;
  3360.      int stop;
  3361. {
  3362.   /* General temporaries.  */
  3363.   int mcnt;
  3364.   unsigned char *p1;
  3365.  
  3366.   /* Just past the end of the corresponding string.  */
  3367.   const char *end1, *end2;
  3368.  
  3369.   /* Pointers into string1 and string2, just past the last characters in
  3370.      each to consider matching.  */
  3371.   const char *end_match_1, *end_match_2;
  3372.  
  3373.   /* Where we are in the data, and the end of the current string.  */
  3374.   const char *d, *dend;
  3375.   
  3376.   /* Where we are in the pattern, and the end of the pattern.  */
  3377.   unsigned char *p = bufp->buffer;
  3378.   register unsigned char *pend = p + bufp->used;
  3379.  
  3380.   /* Mark the opcode just after a start_memory, so we can test for an
  3381.      empty subpattern when we get to the stop_memory.  */
  3382.   unsigned char *just_past_start_mem = 0;
  3383.  
  3384.   /* We use this to map every character in the string.  */
  3385.   char *translate = bufp->translate;
  3386.  
  3387.   /* Failure point stack.  Each place that can handle a failure further
  3388.      down the line pushes a failure point on this stack.  It consists of
  3389.      restart, regend, and reg_info for all registers corresponding to
  3390.      the subexpressions we're currently inside, plus the number of such
  3391.      registers, and, finally, two char *'s.  The first char * is where
  3392.      to resume scanning the pattern; the second one is where to resume
  3393.      scanning the strings.  If the latter is zero, the failure point is
  3394.      a ``dummy''; if a failure happens and the failure point is a dummy,
  3395.      it gets discarded and the next next one is tried.  */
  3396. #ifdef MATCH_MAY_ALLOCATE /* otherwise, this is global.  */
  3397.   fail_stack_type fail_stack;
  3398. #endif
  3399. #ifdef DEBUG
  3400.   static unsigned failure_id = 0;
  3401.   unsigned nfailure_points_pushed = 0, nfailure_points_popped = 0;
  3402. #endif
  3403.  
  3404.   /* We fill all the registers internally, independent of what we
  3405.      return, for use in backreferences.  The number here includes
  3406.      an element for register zero.  */
  3407.   unsigned num_regs = bufp->re_nsub + 1;
  3408.   
  3409.   /* The currently active registers.  */
  3410.   unsigned lowest_active_reg = NO_LOWEST_ACTIVE_REG;
  3411.   unsigned highest_active_reg = NO_HIGHEST_ACTIVE_REG;
  3412.  
  3413.   /* Information on the contents of registers. These are pointers into
  3414.      the input strings; they record just what was matched (on this
  3415.      attempt) by a subexpression part of the pattern, that is, the
  3416.      regnum-th regstart pointer points to where in the pattern we began
  3417.      matching and the regnum-th regend points to right after where we
  3418.      stopped matching the regnum-th subexpression.  (The zeroth register
  3419.      keeps track of what the whole pattern matches.)  */
  3420. #ifdef MATCH_MAY_ALLOCATE /* otherwise, these are global.  */
  3421.   const char **regstart, **regend;
  3422. #endif
  3423.  
  3424.   /* If a group that's operated upon by a repetition operator fails to
  3425.      match anything, then the register for its start will need to be
  3426.      restored because it will have been set to wherever in the string we
  3427.      are when we last see its open-group operator.  Similarly for a
  3428.      register's end.  */
  3429. #ifdef MATCH_MAY_ALLOCATE /* otherwise, these are global.  */
  3430.   const char **old_regstart, **old_regend;
  3431. #endif
  3432.  
  3433.   /* The is_active field of reg_info helps us keep track of which (possibly
  3434.      nested) subexpressions we are currently in. The matched_something
  3435.      field of reg_info[reg_num] helps us tell whether or not we have
  3436.      matched any of the pattern so far this time through the reg_num-th
  3437.      subexpression.  These two fields get reset each time through any
  3438.      loop their register is in.  */
  3439. #ifdef MATCH_MAY_ALLOCATE /* otherwise, this is global.  */
  3440.   register_info_type *reg_info; 
  3441. #endif
  3442.  
  3443.   /* The following record the register info as found in the above
  3444.      variables when we find a match better than any we've seen before. 
  3445.      This happens as we backtrack through the failure points, which in
  3446.      turn happens only if we have not yet matched the entire string. */
  3447.   unsigned best_regs_set = false;
  3448. #ifdef MATCH_MAY_ALLOCATE /* otherwise, these are global.  */
  3449.   const char **best_regstart, **best_regend;
  3450. #endif
  3451.   
  3452.   /* Logically, this is `best_regend[0]'.  But we don't want to have to
  3453.      allocate space for that if we're not allocating space for anything
  3454.      else (see below).  Also, we never need info about register 0 for
  3455.      any of the other register vectors, and it seems rather a kludge to
  3456.      treat `best_regend' differently than the rest.  So we keep track of
  3457.      the end of the best match so far in a separate variable.  We
  3458.      initialize this to NULL so that when we backtrack the first time
  3459.      and need to test it, it's not garbage.  */
  3460.   const char *match_end = NULL;
  3461.  
  3462.   /* Used when we pop values we don't care about.  */
  3463. #ifdef MATCH_MAY_ALLOCATE /* otherwise, these are global.  */
  3464.   const char **reg_dummy;
  3465.   register_info_type *reg_info_dummy;
  3466. #endif
  3467.  
  3468. #ifdef DEBUG
  3469.   /* Counts the total number of registers pushed.  */
  3470.   unsigned num_regs_pushed = 0;     
  3471. #endif
  3472.  
  3473.   DEBUG_PRINT1 ("\n\nEntering re_match_2.\n");
  3474.   
  3475.   INIT_FAIL_STACK ();
  3476.   
  3477. #ifdef MATCH_MAY_ALLOCATE
  3478.   /* Do not bother to initialize all the register variables if there are
  3479.      no groups in the pattern, as it takes a fair amount of time.  If
  3480.      there are groups, we include space for register 0 (the whole
  3481.      pattern), even though we never use it, since it simplifies the
  3482.      array indexing.  We should fix this.  */
  3483.   if (bufp->re_nsub)
  3484.     {
  3485.       regstart = REGEX_TALLOC (num_regs, const char *);
  3486.       regend = REGEX_TALLOC (num_regs, const char *);
  3487.       old_regstart = REGEX_TALLOC (num_regs, const char *);
  3488.       old_regend = REGEX_TALLOC (num_regs, const char *);
  3489.       best_regstart = REGEX_TALLOC (num_regs, const char *);
  3490.       best_regend = REGEX_TALLOC (num_regs, const char *);
  3491.       reg_info = REGEX_TALLOC (num_regs, register_info_type);
  3492.       reg_dummy = REGEX_TALLOC (num_regs, const char *);
  3493.       reg_info_dummy = REGEX_TALLOC (num_regs, register_info_type);
  3494.  
  3495.       if (!(regstart && regend && old_regstart && old_regend && reg_info 
  3496.             && best_regstart && best_regend && reg_dummy && reg_info_dummy)) 
  3497.         {
  3498.           FREE_VARIABLES ();
  3499.           return -2;
  3500.         }
  3501.     }
  3502. #if defined (REGEX_MALLOC)
  3503.   else
  3504.     {
  3505.       /* We must initialize all our variables to NULL, so that
  3506.          `FREE_VARIABLES' doesn't try to free them.  */
  3507.       regstart = regend = old_regstart = old_regend = best_regstart
  3508.         = best_regend = reg_dummy = NULL;
  3509.       reg_info = reg_info_dummy = (register_info_type *) NULL;
  3510.     }
  3511. #endif /* REGEX_MALLOC */
  3512. #endif /* MATCH_MAY_ALLOCATE */
  3513.  
  3514.   /* The starting position is bogus.  */
  3515.   if (pos < 0 || pos > size1 + size2)
  3516.     {
  3517.       FREE_VARIABLES ();
  3518.       return -1;
  3519.     }
  3520.     
  3521.   /* Initialize subexpression text positions to -1 to mark ones that no
  3522.      start_memory/stop_memory has been seen for. Also initialize the
  3523.      register information struct.  */
  3524.   for (mcnt = 1; mcnt < num_regs; mcnt++)
  3525.     {
  3526.       regstart[mcnt] = regend[mcnt] 
  3527.         = old_regstart[mcnt] = old_regend[mcnt] = REG_UNSET_VALUE;
  3528.         
  3529.       REG_MATCH_NULL_STRING_P (reg_info[mcnt]) = MATCH_NULL_UNSET_VALUE;
  3530.       IS_ACTIVE (reg_info[mcnt]) = 0;
  3531.       MATCHED_SOMETHING (reg_info[mcnt]) = 0;
  3532.       EVER_MATCHED_SOMETHING (reg_info[mcnt]) = 0;
  3533.     }
  3534.   
  3535.   /* We move `string1' into `string2' if the latter's empty -- but not if
  3536.      `string1' is null.  */
  3537.   if (size2 == 0 && string1 != NULL)
  3538.     {
  3539.       string2 = string1;
  3540.       size2 = size1;
  3541.       string1 = 0;
  3542.       size1 = 0;
  3543.     }
  3544.   end1 = string1 + size1;
  3545.   end2 = string2 + size2;
  3546.  
  3547.   /* Compute where to stop matching, within the two strings.  */
  3548.   if (stop <= size1)
  3549.     {
  3550.       end_match_1 = string1 + stop;
  3551.       end_match_2 = string2;
  3552.     }
  3553.   else
  3554.     {
  3555.       end_match_1 = end1;
  3556.       end_match_2 = string2 + stop - size1;
  3557.     }
  3558.  
  3559.   /* `p' scans through the pattern as `d' scans through the data. 
  3560.      `dend' is the end of the input string that `d' points within.  `d'
  3561.      is advanced into the following input string whenever necessary, but
  3562.      this happens before fetching; therefore, at the beginning of the
  3563.      loop, `d' can be pointing at the end of a string, but it cannot
  3564.      equal `string2'.  */
  3565.   if (size1 > 0 && pos <= size1)
  3566.     {
  3567.       d = string1 + pos;
  3568.       dend = end_match_1;
  3569.     }
  3570.   else
  3571.     {
  3572.       d = string2 + pos - size1;
  3573.       dend = end_match_2;
  3574.     }
  3575.  
  3576.   DEBUG_PRINT1 ("The compiled pattern is: ");
  3577.   DEBUG_PRINT_COMPILED_PATTERN (bufp, p, pend);
  3578.   DEBUG_PRINT1 ("The string to match is: `");
  3579.   DEBUG_PRINT_DOUBLE_STRING (d, string1, size1, string2, size2);
  3580.   DEBUG_PRINT1 ("'\n");
  3581.   
  3582.   /* This loops over pattern commands.  It exits by returning from the
  3583.      function if the match is complete, or it drops through if the match
  3584.      fails at this starting point in the input data.  */
  3585.   for (;;)
  3586.     {
  3587.       DEBUG_PRINT2 ("\n0x%x: ", p);
  3588.  
  3589.       if (p == pend)
  3590.     { /* End of pattern means we might have succeeded.  */
  3591.           DEBUG_PRINT1 ("end of pattern ... ");
  3592.           
  3593.       /* If we haven't matched the entire string, and we want the
  3594.              longest match, try backtracking.  */
  3595.           if (d != end_match_2)
  3596.         {
  3597.           /* 1 if this match ends in the same string (string1 or string2)
  3598.          as the best previous match.  */
  3599.           boolean same_str_p = (FIRST_STRING_P (match_end) 
  3600.                     == MATCHING_IN_FIRST_STRING);
  3601.           /* 1 if this match is the best seen so far.  */
  3602.           boolean best_match_p;
  3603.  
  3604.           /* AIX compiler got confused when this was combined
  3605.          with the previous declaration.  */
  3606.           if (same_str_p)
  3607.         best_match_p = d > match_end;
  3608.           else
  3609.         best_match_p = !MATCHING_IN_FIRST_STRING;
  3610.  
  3611.               DEBUG_PRINT1 ("backtracking.\n");
  3612.               
  3613.               if (!FAIL_STACK_EMPTY ())
  3614.                 { /* More failure points to try.  */
  3615.  
  3616.                   /* If exceeds best match so far, save it.  */
  3617.                   if (!best_regs_set || best_match_p)
  3618.                     {
  3619.                       best_regs_set = true;
  3620.                       match_end = d;
  3621.                       
  3622.                       DEBUG_PRINT1 ("\nSAVING match as best so far.\n");
  3623.                       
  3624.                       for (mcnt = 1; mcnt < num_regs; mcnt++)
  3625.                         {
  3626.                           best_regstart[mcnt] = regstart[mcnt];
  3627.                           best_regend[mcnt] = regend[mcnt];
  3628.                         }
  3629.                     }
  3630.                   goto fail;           
  3631.                 }
  3632.  
  3633.               /* If no failure points, don't restore garbage.  And if
  3634.                  last match is real best match, don't restore second
  3635.                  best one. */
  3636.               else if (best_regs_set && !best_match_p)
  3637.                 {
  3638.               restore_best_regs:
  3639.                   /* Restore best match.  It may happen that `dend ==
  3640.                      end_match_1' while the restored d is in string2.
  3641.                      For example, the pattern `x.*y.*z' against the
  3642.                      strings `x-' and `y-z-', if the two strings are
  3643.                      not consecutive in memory.  */
  3644.                   DEBUG_PRINT1 ("Restoring best registers.\n");
  3645.                   
  3646.                   d = match_end;
  3647.                   dend = ((d >= string1 && d <= end1)
  3648.                    ? end_match_1 : end_match_2);
  3649.  
  3650.           for (mcnt = 1; mcnt < num_regs; mcnt++)
  3651.             {
  3652.               regstart[mcnt] = best_regstart[mcnt];
  3653.               regend[mcnt] = best_regend[mcnt];
  3654.             }
  3655.                 }
  3656.             } /* d != end_match_2 */
  3657.  
  3658.           DEBUG_PRINT1 ("Accepting match.\n");
  3659.  
  3660.           /* If caller wants register contents data back, do it.  */
  3661.           if (regs && !bufp->no_sub)
  3662.         {
  3663.               /* Have the register data arrays been allocated?  */
  3664.               if (bufp->regs_allocated == REGS_UNALLOCATED)
  3665.                 { /* No.  So allocate them with malloc.  We need one
  3666.                      extra element beyond `num_regs' for the `-1' marker
  3667.                      GNU code uses.  */
  3668.                   regs->num_regs = MAX (RE_NREGS, num_regs + 1);
  3669.                   regs->start = TALLOC (regs->num_regs, regoff_t);
  3670.                   regs->end = TALLOC (regs->num_regs, regoff_t);
  3671.                   if (regs->start == NULL || regs->end == NULL)
  3672.                     return -2;
  3673.                   bufp->regs_allocated = REGS_REALLOCATE;
  3674.                 }
  3675.               else if (bufp->regs_allocated == REGS_REALLOCATE)
  3676.                 { /* Yes.  If we need more elements than were already
  3677.                      allocated, reallocate them.  If we need fewer, just
  3678.                      leave it alone.  */
  3679.                   if (regs->num_regs < num_regs + 1)
  3680.                     {
  3681.                       regs->num_regs = num_regs + 1;
  3682.                       RETALLOC (regs->start, regs->num_regs, regoff_t);
  3683.                       RETALLOC (regs->end, regs->num_regs, regoff_t);
  3684.                       if (regs->start == NULL || regs->end == NULL)
  3685.                         return -2;
  3686.                     }
  3687.                 }
  3688.               else
  3689.         {
  3690.           /* These braces fend off a "empty body in an else-statement"
  3691.              warning under GCC when assert expands to nothing.  */
  3692.           assert (bufp->regs_allocated == REGS_FIXED);
  3693.         }
  3694.  
  3695.               /* Convert the pointer data in `regstart' and `regend' to
  3696.                  indices.  Register zero has to be set differently,
  3697.                  since we haven't kept track of any info for it.  */
  3698.               if (regs->num_regs > 0)
  3699.                 {
  3700.                   regs->start[0] = pos;
  3701.                   regs->end[0] = (MATCHING_IN_FIRST_STRING
  3702.                   ? ((regoff_t) (d - string1))
  3703.                       : ((regoff_t) (d - string2 + size1)));
  3704.                 }
  3705.               
  3706.               /* Go through the first `min (num_regs, regs->num_regs)'
  3707.                  registers, since that is all we initialized.  */
  3708.           for (mcnt = 1; mcnt < MIN (num_regs, regs->num_regs); mcnt++)
  3709.         {
  3710.                   if (REG_UNSET (regstart[mcnt]) || REG_UNSET (regend[mcnt]))
  3711.                     regs->start[mcnt] = regs->end[mcnt] = -1;
  3712.                   else
  3713.                     {
  3714.               regs->start[mcnt]
  3715.             = (regoff_t) POINTER_TO_OFFSET (regstart[mcnt]);
  3716.                       regs->end[mcnt]
  3717.             = (regoff_t) POINTER_TO_OFFSET (regend[mcnt]);
  3718.                     }
  3719.         }
  3720.               
  3721.               /* If the regs structure we return has more elements than
  3722.                  were in the pattern, set the extra elements to -1.  If
  3723.                  we (re)allocated the registers, this is the case,
  3724.                  because we always allocate enough to have at least one
  3725.                  -1 at the end.  */
  3726.               for (mcnt = num_regs; mcnt < regs->num_regs; mcnt++)
  3727.                 regs->start[mcnt] = regs->end[mcnt] = -1;
  3728.         } /* regs && !bufp->no_sub */
  3729.  
  3730.           FREE_VARIABLES ();
  3731.           DEBUG_PRINT4 ("%u failure points pushed, %u popped (%u remain).\n",
  3732.                         nfailure_points_pushed, nfailure_points_popped,
  3733.                         nfailure_points_pushed - nfailure_points_popped);
  3734.           DEBUG_PRINT2 ("%u registers pushed.\n", num_regs_pushed);
  3735.  
  3736.           mcnt = d - pos - (MATCHING_IN_FIRST_STRING 
  3737.                 ? string1 
  3738.                 : string2 - size1);
  3739.  
  3740.           DEBUG_PRINT2 ("Returning %d from re_match_2.\n", mcnt);
  3741.  
  3742.           return mcnt;
  3743.         }
  3744.  
  3745.       /* Otherwise match next pattern command.  */
  3746. #ifdef SWITCH_ENUM_BUG
  3747.       switch ((int) ((re_opcode_t) *p++))
  3748. #else
  3749.       switch ((re_opcode_t) *p++)
  3750. #endif
  3751.     {
  3752.         /* Ignore these.  Used to ignore the n of succeed_n's which
  3753.            currently have n == 0.  */
  3754.         case no_op:
  3755.           DEBUG_PRINT1 ("EXECUTING no_op.\n");
  3756.           break;
  3757.  
  3758.  
  3759.         /* Match the next n pattern characters exactly.  The following
  3760.            byte in the pattern defines n, and the n bytes after that
  3761.            are the characters to match.  */
  3762.     case exactn:
  3763.       mcnt = *p++;
  3764.           DEBUG_PRINT2 ("EXECUTING exactn %d.\n", mcnt);
  3765.  
  3766.           /* This is written out as an if-else so we don't waste time
  3767.              testing `translate' inside the loop.  */
  3768.           if (translate)
  3769.         {
  3770.           do
  3771.         {
  3772.           PREFETCH ();
  3773.           if (translate[(unsigned char) *d++] != (char) *p++)
  3774.                     goto fail;
  3775.         }
  3776.           while (--mcnt);
  3777.         }
  3778.       else
  3779.         {
  3780.           do
  3781.         {
  3782.           PREFETCH ();
  3783.           if (*d++ != (char) *p++) goto fail;
  3784.         }
  3785.           while (--mcnt);
  3786.         }
  3787.       SET_REGS_MATCHED ();
  3788.           break;
  3789.  
  3790.  
  3791.         /* Match any character except possibly a newline or a null.  */
  3792.     case anychar:
  3793.           DEBUG_PRINT1 ("EXECUTING anychar.\n");
  3794.  
  3795.           PREFETCH ();
  3796.  
  3797.           if ((!(bufp->syntax & RE_DOT_NEWLINE) && TRANSLATE (*d) == '\n')
  3798.               || (bufp->syntax & RE_DOT_NOT_NULL && TRANSLATE (*d) == '\000'))
  3799.         goto fail;
  3800.  
  3801.           SET_REGS_MATCHED ();
  3802.           DEBUG_PRINT2 ("  Matched `%d'.\n", *d);
  3803.           d++;
  3804.       break;
  3805.  
  3806.  
  3807.     case charset:
  3808.     case charset_not:
  3809.       {
  3810.         register unsigned char c;
  3811.         boolean not = (re_opcode_t) *(p - 1) == charset_not;
  3812.  
  3813.             DEBUG_PRINT2 ("EXECUTING charset%s.\n", not ? "_not" : "");
  3814.  
  3815.         PREFETCH ();
  3816.         c = TRANSLATE (*d); /* The character to match.  */
  3817.  
  3818.             /* Cast to `unsigned' instead of `unsigned char' in case the
  3819.                bit list is a full 32 bytes long.  */
  3820.         if (c < (unsigned) (*p * BYTEWIDTH)
  3821.         && p[1 + c / BYTEWIDTH] & (1 << (c % BYTEWIDTH)))
  3822.           not = !not;
  3823.  
  3824.         p += 1 + *p;
  3825.  
  3826.         if (!not) goto fail;
  3827.             
  3828.         SET_REGS_MATCHED ();
  3829.             d++;
  3830.         break;
  3831.       }
  3832.  
  3833.  
  3834.         /* The beginning of a group is represented by start_memory.
  3835.            The arguments are the register number in the next byte, and the
  3836.            number of groups inner to this one in the next.  The text
  3837.            matched within the group is recorded (in the internal
  3838.            registers data structure) under the register number.  */
  3839.         case start_memory:
  3840.       DEBUG_PRINT3 ("EXECUTING start_memory %d (%d):\n", *p, p[1]);
  3841.  
  3842.           /* Find out if this group can match the empty string.  */
  3843.       p1 = p;        /* To send to group_match_null_string_p.  */
  3844.           
  3845.           if (REG_MATCH_NULL_STRING_P (reg_info[*p]) == MATCH_NULL_UNSET_VALUE)
  3846.             REG_MATCH_NULL_STRING_P (reg_info[*p]) 
  3847.               = group_match_null_string_p (&p1, pend, reg_info);
  3848.  
  3849.           /* Save the position in the string where we were the last time
  3850.              we were at this open-group operator in case the group is
  3851.              operated upon by a repetition operator, e.g., with `(a*)*b'
  3852.              against `ab'; then we want to ignore where we are now in
  3853.              the string in case this attempt to match fails.  */
  3854.           old_regstart[*p] = REG_MATCH_NULL_STRING_P (reg_info[*p])
  3855.                              ? REG_UNSET (regstart[*p]) ? d : regstart[*p]
  3856.                              : regstart[*p];
  3857.       DEBUG_PRINT2 ("  old_regstart: %d\n", 
  3858.              POINTER_TO_OFFSET (old_regstart[*p]));
  3859.  
  3860.           regstart[*p] = d;
  3861.       DEBUG_PRINT2 ("  regstart: %d\n", POINTER_TO_OFFSET (regstart[*p]));
  3862.  
  3863.           IS_ACTIVE (reg_info[*p]) = 1;
  3864.           MATCHED_SOMETHING (reg_info[*p]) = 0;
  3865.           
  3866.           /* This is the new highest active register.  */
  3867.           highest_active_reg = *p;
  3868.           
  3869.           /* If nothing was active before, this is the new lowest active
  3870.              register.  */
  3871.           if (lowest_active_reg == NO_LOWEST_ACTIVE_REG)
  3872.             lowest_active_reg = *p;
  3873.  
  3874.           /* Move past the register number and inner group count.  */
  3875.           p += 2;
  3876.       just_past_start_mem = p;
  3877.           break;
  3878.  
  3879.  
  3880.         /* The stop_memory opcode represents the end of a group.  Its
  3881.            arguments are the same as start_memory's: the register
  3882.            number, and the number of inner groups.  */
  3883.     case stop_memory:
  3884.       DEBUG_PRINT3 ("EXECUTING stop_memory %d (%d):\n", *p, p[1]);
  3885.              
  3886.           /* We need to save the string position the last time we were at
  3887.              this close-group operator in case the group is operated
  3888.              upon by a repetition operator, e.g., with `((a*)*(b*)*)*'
  3889.              against `aba'; then we want to ignore where we are now in
  3890.              the string in case this attempt to match fails.  */
  3891.           old_regend[*p] = REG_MATCH_NULL_STRING_P (reg_info[*p])
  3892.                            ? REG_UNSET (regend[*p]) ? d : regend[*p]
  3893.                : regend[*p];
  3894.       DEBUG_PRINT2 ("      old_regend: %d\n", 
  3895.              POINTER_TO_OFFSET (old_regend[*p]));
  3896.  
  3897.           regend[*p] = d;
  3898.       DEBUG_PRINT2 ("      regend: %d\n", POINTER_TO_OFFSET (regend[*p]));
  3899.  
  3900.           /* This register isn't active anymore.  */
  3901.           IS_ACTIVE (reg_info[*p]) = 0;
  3902.           
  3903.           /* If this was the only register active, nothing is active
  3904.              anymore.  */
  3905.           if (lowest_active_reg == highest_active_reg)
  3906.             {
  3907.               lowest_active_reg = NO_LOWEST_ACTIVE_REG;
  3908.               highest_active_reg = NO_HIGHEST_ACTIVE_REG;
  3909.             }
  3910.           else
  3911.             { /* We must scan for the new highest active register, since
  3912.                  it isn't necessarily one less than now: consider
  3913.                  (a(b)c(d(e)f)g).  When group 3 ends, after the f), the
  3914.                  new highest active register is 1.  */
  3915.               unsigned char r = *p - 1;
  3916.               while (r > 0 && !IS_ACTIVE (reg_info[r]))
  3917.                 r--;
  3918.               
  3919.               /* If we end up at register zero, that means that we saved
  3920.                  the registers as the result of an `on_failure_jump', not
  3921.                  a `start_memory', and we jumped to past the innermost
  3922.                  `stop_memory'.  For example, in ((.)*) we save
  3923.                  registers 1 and 2 as a result of the *, but when we pop
  3924.                  back to the second ), we are at the stop_memory 1.
  3925.                  Thus, nothing is active.  */
  3926.           if (r == 0)
  3927.                 {
  3928.                   lowest_active_reg = NO_LOWEST_ACTIVE_REG;
  3929.                   highest_active_reg = NO_HIGHEST_ACTIVE_REG;
  3930.                 }
  3931.               else
  3932.                 highest_active_reg = r;
  3933.             }
  3934.           
  3935.           /* If just failed to match something this time around with a
  3936.              group that's operated on by a repetition operator, try to
  3937.              force exit from the ``loop'', and restore the register
  3938.              information for this group that we had before trying this
  3939.              last match.  */
  3940.           if ((!MATCHED_SOMETHING (reg_info[*p])
  3941.                || just_past_start_mem == p - 1)
  3942.           && (p + 2) < pend)              
  3943.             {
  3944.               boolean is_a_jump_n = false;
  3945.               
  3946.               p1 = p + 2;
  3947.               mcnt = 0;
  3948.               switch ((re_opcode_t) *p1++)
  3949.                 {
  3950.                   case jump_n:
  3951.             is_a_jump_n = true;
  3952.                   case pop_failure_jump:
  3953.           case maybe_pop_jump:
  3954.           case jump:
  3955.           case dummy_failure_jump:
  3956.                     EXTRACT_NUMBER_AND_INCR (mcnt, p1);
  3957.             if (is_a_jump_n)
  3958.               p1 += 2;
  3959.                     break;
  3960.                   
  3961.                   default:
  3962.                     /* do nothing */ ;
  3963.                 }
  3964.           p1 += mcnt;
  3965.         
  3966.               /* If the next operation is a jump backwards in the pattern
  3967.              to an on_failure_jump right before the start_memory
  3968.                  corresponding to this stop_memory, exit from the loop
  3969.                  by forcing a failure after pushing on the stack the
  3970.                  on_failure_jump's jump in the pattern, and d.  */
  3971.               if (mcnt < 0 && (re_opcode_t) *p1 == on_failure_jump
  3972.                   && (re_opcode_t) p1[3] == start_memory && p1[4] == *p)
  3973.         {
  3974.                   /* If this group ever matched anything, then restore
  3975.                      what its registers were before trying this last
  3976.                      failed match, e.g., with `(a*)*b' against `ab' for
  3977.                      regstart[1], and, e.g., with `((a*)*(b*)*)*'
  3978.                      against `aba' for regend[3].
  3979.                      
  3980.                      Also restore the registers for inner groups for,
  3981.                      e.g., `((a*)(b*))*' against `aba' (register 3 would
  3982.                      otherwise get trashed).  */
  3983.                      
  3984.                   if (EVER_MATCHED_SOMETHING (reg_info[*p]))
  3985.             {
  3986.               unsigned r; 
  3987.         
  3988.                       EVER_MATCHED_SOMETHING (reg_info[*p]) = 0;
  3989.                       
  3990.               /* Restore this and inner groups' (if any) registers.  */
  3991.                       for (r = *p; r < *p + *(p + 1); r++)
  3992.                         {
  3993.                           regstart[r] = old_regstart[r];
  3994.  
  3995.                           /* xx why this test?  */
  3996.                           if ((int) old_regend[r] >= (int) regstart[r])
  3997.                             regend[r] = old_regend[r];
  3998.                         }     
  3999.                     }
  4000.           p1++;
  4001.                   EXTRACT_NUMBER_AND_INCR (mcnt, p1);
  4002.                   PUSH_FAILURE_POINT (p1 + mcnt, d, -2);
  4003.  
  4004.                   goto fail;
  4005.                 }
  4006.             }
  4007.           
  4008.           /* Move past the register number and the inner group count.  */
  4009.           p += 2;
  4010.           break;
  4011.  
  4012.  
  4013.     /* \<digit> has been turned into a `duplicate' command which is
  4014.            followed by the numeric value of <digit> as the register number.  */
  4015.         case duplicate:
  4016.       {
  4017.         register const char *d2, *dend2;
  4018.         int regno = *p++;   /* Get which register to match against.  */
  4019.         DEBUG_PRINT2 ("EXECUTING duplicate %d.\n", regno);
  4020.  
  4021.         /* Can't back reference a group which we've never matched.  */
  4022.             if (REG_UNSET (regstart[regno]) || REG_UNSET (regend[regno]))
  4023.               goto fail;
  4024.               
  4025.             /* Where in input to try to start matching.  */
  4026.             d2 = regstart[regno];
  4027.             
  4028.             /* Where to stop matching; if both the place to start and
  4029.                the place to stop matching are in the same string, then
  4030.                set to the place to stop, otherwise, for now have to use
  4031.                the end of the first string.  */
  4032.  
  4033.             dend2 = ((FIRST_STRING_P (regstart[regno]) 
  4034.               == FIRST_STRING_P (regend[regno]))
  4035.              ? regend[regno] : end_match_1);
  4036.         for (;;)
  4037.           {
  4038.         /* If necessary, advance to next segment in register
  4039.                    contents.  */
  4040.         while (d2 == dend2)
  4041.           {
  4042.             if (dend2 == end_match_2) break;
  4043.             if (dend2 == regend[regno]) break;
  4044.  
  4045.                     /* End of string1 => advance to string2. */
  4046.                     d2 = string2;
  4047.                     dend2 = regend[regno];
  4048.           }
  4049.         /* At end of register contents => success */
  4050.         if (d2 == dend2) break;
  4051.  
  4052.         /* If necessary, advance to next segment in data.  */
  4053.         PREFETCH ();
  4054.  
  4055.         /* How many characters left in this segment to match.  */
  4056.         mcnt = dend - d;
  4057.                 
  4058.         /* Want how many consecutive characters we can match in
  4059.                    one shot, so, if necessary, adjust the count.  */
  4060.                 if (mcnt > dend2 - d2)
  4061.           mcnt = dend2 - d2;
  4062.                   
  4063.         /* Compare that many; failure if mismatch, else move
  4064.                    past them.  */
  4065.         if (translate 
  4066.                     ? bcmp_translate (d, d2, mcnt, translate) 
  4067.                     : bcmp (d, d2, mcnt))
  4068.           goto fail;
  4069.         d += mcnt, d2 += mcnt;
  4070.           }
  4071.       }
  4072.       break;
  4073.  
  4074.  
  4075.         /* begline matches the empty string at the beginning of the string
  4076.            (unless `not_bol' is set in `bufp'), and, if
  4077.            `newline_anchor' is set, after newlines.  */
  4078.     case begline:
  4079.           DEBUG_PRINT1 ("EXECUTING begline.\n");
  4080.           
  4081.           if (AT_STRINGS_BEG (d))
  4082.             {
  4083.               if (!bufp->not_bol) break;
  4084.             }
  4085.           else if (d[-1] == '\n' && bufp->newline_anchor)
  4086.             {
  4087.               break;
  4088.             }
  4089.           /* In all other cases, we fail.  */
  4090.           goto fail;
  4091.  
  4092.  
  4093.         /* endline is the dual of begline.  */
  4094.     case endline:
  4095.           DEBUG_PRINT1 ("EXECUTING endline.\n");
  4096.  
  4097.           if (AT_STRINGS_END (d))
  4098.             {
  4099.               if (!bufp->not_eol) break;
  4100.             }
  4101.           
  4102.           /* We have to ``prefetch'' the next character.  */
  4103.           else if ((d == end1 ? *string2 : *d) == '\n'
  4104.                    && bufp->newline_anchor)
  4105.             {
  4106.               break;
  4107.             }
  4108.           goto fail;
  4109.  
  4110.  
  4111.     /* Match at the very beginning of the data.  */
  4112.         case begbuf:
  4113.           DEBUG_PRINT1 ("EXECUTING begbuf.\n");
  4114.           if (AT_STRINGS_BEG (d))
  4115.             break;
  4116.           goto fail;
  4117.  
  4118.  
  4119.     /* Match at the very end of the data.  */
  4120.         case endbuf:
  4121.           DEBUG_PRINT1 ("EXECUTING endbuf.\n");
  4122.       if (AT_STRINGS_END (d))
  4123.         break;
  4124.           goto fail;
  4125.  
  4126.  
  4127.         /* on_failure_keep_string_jump is used to optimize `.*\n'.  It
  4128.            pushes NULL as the value for the string on the stack.  Then
  4129.            `pop_failure_point' will keep the current value for the
  4130.            string, instead of restoring it.  To see why, consider
  4131.            matching `foo\nbar' against `.*\n'.  The .* matches the foo;
  4132.            then the . fails against the \n.  But the next thing we want
  4133.            to do is match the \n against the \n; if we restored the
  4134.            string value, we would be back at the foo.
  4135.            
  4136.            Because this is used only in specific cases, we don't need to
  4137.            check all the things that `on_failure_jump' does, to make
  4138.            sure the right things get saved on the stack.  Hence we don't
  4139.            share its code.  The only reason to push anything on the
  4140.            stack at all is that otherwise we would have to change
  4141.            `anychar's code to do something besides goto fail in this
  4142.            case; that seems worse than this.  */
  4143.         case on_failure_keep_string_jump:
  4144.           DEBUG_PRINT1 ("EXECUTING on_failure_keep_string_jump");
  4145.           
  4146.           EXTRACT_NUMBER_AND_INCR (mcnt, p);
  4147.           DEBUG_PRINT3 (" %d (to 0x%x):\n", mcnt, p + mcnt);
  4148.  
  4149.           PUSH_FAILURE_POINT (p + mcnt, NULL, -2);
  4150.           break;
  4151.  
  4152.  
  4153.     /* Uses of on_failure_jump:
  4154.         
  4155.            Each alternative starts with an on_failure_jump that points
  4156.            to the beginning of the next alternative.  Each alternative
  4157.            except the last ends with a jump that in effect jumps past
  4158.            the rest of the alternatives.  (They really jump to the
  4159.            ending jump of the following alternative, because tensioning
  4160.            these jumps is a hassle.)
  4161.  
  4162.            Repeats start with an on_failure_jump that points past both
  4163.            the repetition text and either the following jump or
  4164.            pop_failure_jump back to this on_failure_jump.  */
  4165.     case on_failure_jump:
  4166.         on_failure:
  4167.           DEBUG_PRINT1 ("EXECUTING on_failure_jump");
  4168.  
  4169.           EXTRACT_NUMBER_AND_INCR (mcnt, p);
  4170.           DEBUG_PRINT3 (" %d (to 0x%x)", mcnt, p + mcnt);
  4171.  
  4172.           /* If this on_failure_jump comes right before a group (i.e.,
  4173.              the original * applied to a group), save the information
  4174.              for that group and all inner ones, so that if we fail back
  4175.              to this point, the group's information will be correct.
  4176.              For example, in \(a*\)*\1, we need the preceding group,
  4177.              and in \(\(a*\)b*\)\2, we need the inner group.  */
  4178.  
  4179.           /* We can't use `p' to check ahead because we push
  4180.              a failure point to `p + mcnt' after we do this.  */
  4181.           p1 = p;
  4182.  
  4183.           /* We need to skip no_op's before we look for the
  4184.              start_memory in case this on_failure_jump is happening as
  4185.              the result of a completed succeed_n, as in \(a\)\{1,3\}b\1
  4186.              against aba.  */
  4187.           while (p1 < pend && (re_opcode_t) *p1 == no_op)
  4188.             p1++;
  4189.  
  4190.           if (p1 < pend && (re_opcode_t) *p1 == start_memory)
  4191.             {
  4192.               /* We have a new highest active register now.  This will
  4193.                  get reset at the start_memory we are about to get to,
  4194.                  but we will have saved all the registers relevant to
  4195.                  this repetition op, as described above.  */
  4196.               highest_active_reg = *(p1 + 1) + *(p1 + 2);
  4197.               if (lowest_active_reg == NO_LOWEST_ACTIVE_REG)
  4198.                 lowest_active_reg = *(p1 + 1);
  4199.             }
  4200.  
  4201.           DEBUG_PRINT1 (":\n");
  4202.           PUSH_FAILURE_POINT (p + mcnt, d, -2);
  4203.           break;
  4204.  
  4205.  
  4206.         /* A smart repeat ends with `maybe_pop_jump'.
  4207.        We change it to either `pop_failure_jump' or `jump'.  */
  4208.         case maybe_pop_jump:
  4209.           EXTRACT_NUMBER_AND_INCR (mcnt, p);
  4210.           DEBUG_PRINT2 ("EXECUTING maybe_pop_jump %d.\n", mcnt);
  4211.           {
  4212.         register unsigned char *p2 = p;
  4213.  
  4214.             /* Compare the beginning of the repeat with what in the
  4215.                pattern follows its end. If we can establish that there
  4216.                is nothing that they would both match, i.e., that we
  4217.                would have to backtrack because of (as in, e.g., `a*a')
  4218.                then we can change to pop_failure_jump, because we'll
  4219.                never have to backtrack.
  4220.                
  4221.                This is not true in the case of alternatives: in
  4222.                `(a|ab)*' we do need to backtrack to the `ab' alternative
  4223.                (e.g., if the string was `ab').  But instead of trying to
  4224.                detect that here, the alternative has put on a dummy
  4225.                failure point which is what we will end up popping.  */
  4226.  
  4227.         /* Skip over open/close-group commands.
  4228.            If what follows this loop is a ...+ construct,
  4229.            look at what begins its body, since we will have to
  4230.            match at least one of that.  */
  4231.         while (1)
  4232.           {
  4233.         if (p2 + 2 < pend
  4234.             && ((re_opcode_t) *p2 == stop_memory
  4235.             || (re_opcode_t) *p2 == start_memory))
  4236.           p2 += 3;
  4237.         else if (p2 + 6 < pend
  4238.              && (re_opcode_t) *p2 == dummy_failure_jump)
  4239.           p2 += 6;
  4240.         else
  4241.           break;
  4242.           }
  4243.  
  4244.         p1 = p + mcnt;
  4245.         /* p1[0] ... p1[2] are the `on_failure_jump' corresponding
  4246.            to the `maybe_finalize_jump' of this case.  Examine what 
  4247.            follows.  */
  4248.  
  4249.             /* If we're at the end of the pattern, we can change.  */
  4250.             if (p2 == pend)
  4251.           {
  4252.         /* Consider what happens when matching ":\(.*\)"
  4253.            against ":/".  I don't really understand this code
  4254.            yet.  */
  4255.               p[-3] = (unsigned char) pop_failure_jump;
  4256.                 DEBUG_PRINT1
  4257.                   ("  End of pattern: change to `pop_failure_jump'.\n");
  4258.               }
  4259.  
  4260.             else if ((re_opcode_t) *p2 == exactn
  4261.              || (bufp->newline_anchor && (re_opcode_t) *p2 == endline))
  4262.           {
  4263.         register unsigned char c
  4264.                   = *p2 == (unsigned char) endline ? '\n' : p2[2];
  4265.  
  4266.                 if ((re_opcode_t) p1[3] == exactn && p1[5] != c)
  4267.                   {
  4268.               p[-3] = (unsigned char) pop_failure_jump;
  4269.                     DEBUG_PRINT3 ("  %c != %c => pop_failure_jump.\n",
  4270.                                   c, p1[5]);
  4271.                   }
  4272.                   
  4273.         else if ((re_opcode_t) p1[3] == charset
  4274.              || (re_opcode_t) p1[3] == charset_not)
  4275.           {
  4276.             int not = (re_opcode_t) p1[3] == charset_not;
  4277.                     
  4278.             if (c < (unsigned char) (p1[4] * BYTEWIDTH)
  4279.             && p1[5 + c / BYTEWIDTH] & (1 << (c % BYTEWIDTH)))
  4280.               not = !not;
  4281.  
  4282.                     /* `not' is equal to 1 if c would match, which means
  4283.                         that we can't change to pop_failure_jump.  */
  4284.             if (!not)
  4285.                       {
  4286.                   p[-3] = (unsigned char) pop_failure_jump;
  4287.                         DEBUG_PRINT1 ("  No match => pop_failure_jump.\n");
  4288.                       }
  4289.           }
  4290.           }
  4291.             else if ((re_opcode_t) *p2 == charset)
  4292.           {
  4293. #ifdef DEBUG
  4294.         register unsigned char c
  4295.                   = *p2 == (unsigned char) endline ? '\n' : p2[2];
  4296. #endif
  4297.  
  4298.                 if ((re_opcode_t) p1[3] == exactn
  4299.             && ! ((int) p2[1] * BYTEWIDTH > (int) p1[4]
  4300.               && (p2[1 + p1[4] / BYTEWIDTH]
  4301.                   & (1 << (p1[4] % BYTEWIDTH)))))
  4302.                   {
  4303.               p[-3] = (unsigned char) pop_failure_jump;
  4304.                     DEBUG_PRINT3 ("  %c != %c => pop_failure_jump.\n",
  4305.                                   c, p1[5]);
  4306.                   }
  4307.                   
  4308.         else if ((re_opcode_t) p1[3] == charset_not)
  4309.           {
  4310.             int idx;
  4311.             /* We win if the charset_not inside the loop
  4312.                lists every character listed in the charset after.  */
  4313.             for (idx = 0; idx < (int) p2[1]; idx++)
  4314.               if (! (p2[2 + idx] == 0
  4315.                  || (idx < (int) p1[4]
  4316.                  && ((p2[2 + idx] & ~ p1[5 + idx]) == 0))))
  4317.             break;
  4318.  
  4319.             if (idx == p2[1])
  4320.                       {
  4321.                   p[-3] = (unsigned char) pop_failure_jump;
  4322.                         DEBUG_PRINT1 ("  No match => pop_failure_jump.\n");
  4323.                       }
  4324.           }
  4325.         else if ((re_opcode_t) p1[3] == charset)
  4326.           {
  4327.             int idx;
  4328.             /* We win if the charset inside the loop
  4329.                has no overlap with the one after the loop.  */
  4330.             for (idx = 0;
  4331.              idx < (int) p2[1] && idx < (int) p1[4];
  4332.              idx++)
  4333.               if ((p2[2 + idx] & p1[5 + idx]) != 0)
  4334.             break;
  4335.  
  4336.             if (idx == p2[1] || idx == p1[4])
  4337.                       {
  4338.                   p[-3] = (unsigned char) pop_failure_jump;
  4339.                         DEBUG_PRINT1 ("  No match => pop_failure_jump.\n");
  4340.                       }
  4341.           }
  4342.           }
  4343.       }
  4344.       p -= 2;        /* Point at relative address again.  */
  4345.       if ((re_opcode_t) p[-1] != pop_failure_jump)
  4346.         {
  4347.           p[-1] = (unsigned char) jump;
  4348.               DEBUG_PRINT1 ("  Match => jump.\n");
  4349.           goto unconditional_jump;
  4350.         }
  4351.         /* Note fall through.  */
  4352.  
  4353.  
  4354.     /* The end of a simple repeat has a pop_failure_jump back to
  4355.            its matching on_failure_jump, where the latter will push a
  4356.            failure point.  The pop_failure_jump takes off failure
  4357.            points put on by this pop_failure_jump's matching
  4358.            on_failure_jump; we got through the pattern to here from the
  4359.            matching on_failure_jump, so didn't fail.  */
  4360.         case pop_failure_jump:
  4361.           {
  4362.             /* We need to pass separate storage for the lowest and
  4363.                highest registers, even though we don't care about the
  4364.                actual values.  Otherwise, we will restore only one
  4365.                register from the stack, since lowest will == highest in
  4366.                `pop_failure_point'.  */
  4367.             unsigned dummy_low_reg, dummy_high_reg;
  4368.             unsigned char *pdummy;
  4369.             const char *sdummy;
  4370.  
  4371.             DEBUG_PRINT1 ("EXECUTING pop_failure_jump.\n");
  4372.             POP_FAILURE_POINT (sdummy, pdummy,
  4373.                                dummy_low_reg, dummy_high_reg,
  4374.                                reg_dummy, reg_dummy, reg_info_dummy);
  4375.           }
  4376.           /* Note fall through.  */
  4377.  
  4378.           
  4379.         /* Unconditionally jump (without popping any failure points).  */
  4380.         case jump:
  4381.     unconditional_jump:
  4382.       EXTRACT_NUMBER_AND_INCR (mcnt, p);    /* Get the amount to jump.  */
  4383.           DEBUG_PRINT2 ("EXECUTING jump %d ", mcnt);
  4384.       p += mcnt;                /* Do the jump.  */
  4385.           DEBUG_PRINT2 ("(to 0x%x).\n", p);
  4386.       break;
  4387.  
  4388.     
  4389.         /* We need this opcode so we can detect where alternatives end
  4390.            in `group_match_null_string_p' et al.  */
  4391.         case jump_past_alt:
  4392.           DEBUG_PRINT1 ("EXECUTING jump_past_alt.\n");
  4393.           goto unconditional_jump;
  4394.  
  4395.  
  4396.         /* Normally, the on_failure_jump pushes a failure point, which
  4397.            then gets popped at pop_failure_jump.  We will end up at
  4398.            pop_failure_jump, also, and with a pattern of, say, `a+', we
  4399.            are skipping over the on_failure_jump, so we have to push
  4400.            something meaningless for pop_failure_jump to pop.  */
  4401.         case dummy_failure_jump:
  4402.           DEBUG_PRINT1 ("EXECUTING dummy_failure_jump.\n");
  4403.           /* It doesn't matter what we push for the string here.  What
  4404.              the code at `fail' tests is the value for the pattern.  */
  4405.           PUSH_FAILURE_POINT (0, 0, -2);
  4406.           goto unconditional_jump;
  4407.  
  4408.  
  4409.         /* At the end of an alternative, we need to push a dummy failure
  4410.            point in case we are followed by a `pop_failure_jump', because
  4411.            we don't want the failure point for the alternative to be
  4412.            popped.  For example, matching `(a|ab)*' against `aab'
  4413.            requires that we match the `ab' alternative.  */
  4414.         case push_dummy_failure:
  4415.           DEBUG_PRINT1 ("EXECUTING push_dummy_failure.\n");
  4416.           /* See comments just above at `dummy_failure_jump' about the
  4417.              two zeroes.  */
  4418.           PUSH_FAILURE_POINT (0, 0, -2);
  4419.           break;
  4420.  
  4421.         /* Have to succeed matching what follows at least n times.
  4422.            After that, handle like `on_failure_jump'.  */
  4423.         case succeed_n: 
  4424.           EXTRACT_NUMBER (mcnt, p + 2);
  4425.           DEBUG_PRINT2 ("EXECUTING succeed_n %d.\n", mcnt);
  4426.  
  4427.           assert (mcnt >= 0);
  4428.           /* Originally, this is how many times we HAVE to succeed.  */
  4429.           if (mcnt > 0)
  4430.             {
  4431.                mcnt--;
  4432.            p += 2;
  4433.                STORE_NUMBER_AND_INCR (p, mcnt);
  4434.                DEBUG_PRINT3 ("  Setting 0x%x to %d.\n", p, mcnt);
  4435.             }
  4436.       else if (mcnt == 0)
  4437.             {
  4438.               DEBUG_PRINT2 ("  Setting two bytes from 0x%x to no_op.\n", p+2);
  4439.           p[2] = (unsigned char) no_op;
  4440.               p[3] = (unsigned char) no_op;
  4441.               goto on_failure;
  4442.             }
  4443.           break;
  4444.         
  4445.         case jump_n: 
  4446.           EXTRACT_NUMBER (mcnt, p + 2);
  4447.           DEBUG_PRINT2 ("EXECUTING jump_n %d.\n", mcnt);
  4448.  
  4449.           /* Originally, this is how many times we CAN jump.  */
  4450.           if (mcnt)
  4451.             {
  4452.                mcnt--;
  4453.                STORE_NUMBER (p + 2, mcnt);
  4454.            goto unconditional_jump;         
  4455.             }
  4456.           /* If don't have to jump any more, skip over the rest of command.  */
  4457.       else      
  4458.         p += 4;             
  4459.           break;
  4460.         
  4461.     case set_number_at:
  4462.       {
  4463.             DEBUG_PRINT1 ("EXECUTING set_number_at.\n");
  4464.  
  4465.             EXTRACT_NUMBER_AND_INCR (mcnt, p);
  4466.             p1 = p + mcnt;
  4467.             EXTRACT_NUMBER_AND_INCR (mcnt, p);
  4468.             DEBUG_PRINT3 ("  Setting 0x%x to %d.\n", p1, mcnt);
  4469.         STORE_NUMBER (p1, mcnt);
  4470.             break;
  4471.           }
  4472.  
  4473.         case wordbound:
  4474.           DEBUG_PRINT1 ("EXECUTING wordbound.\n");
  4475.           if (AT_WORD_BOUNDARY (d))
  4476.         break;
  4477.           goto fail;
  4478.  
  4479.     case notwordbound:
  4480.           DEBUG_PRINT1 ("EXECUTING notwordbound.\n");
  4481.       if (AT_WORD_BOUNDARY (d))
  4482.         goto fail;
  4483.           break;
  4484.  
  4485.     case wordbeg:
  4486.           DEBUG_PRINT1 ("EXECUTING wordbeg.\n");
  4487.       if (WORDCHAR_P (d) && (AT_STRINGS_BEG (d) || !WORDCHAR_P (d - 1)))
  4488.         break;
  4489.           goto fail;
  4490.  
  4491.     case wordend:
  4492.           DEBUG_PRINT1 ("EXECUTING wordend.\n");
  4493.       if (!AT_STRINGS_BEG (d) && WORDCHAR_P (d - 1)
  4494.               && (!WORDCHAR_P (d) || AT_STRINGS_END (d)))
  4495.         break;
  4496.           goto fail;
  4497.  
  4498. #ifdef emacs
  4499.       case before_dot:
  4500.           DEBUG_PRINT1 ("EXECUTING before_dot.\n");
  4501.        if (PTR_CHAR_POS ((unsigned char *) d) >= point)
  4502.           goto fail;
  4503.         break;
  4504.   
  4505.       case at_dot:
  4506.           DEBUG_PRINT1 ("EXECUTING at_dot.\n");
  4507.        if (PTR_CHAR_POS ((unsigned char *) d) != point)
  4508.           goto fail;
  4509.         break;
  4510.   
  4511.       case after_dot:
  4512.           DEBUG_PRINT1 ("EXECUTING after_dot.\n");
  4513.           if (PTR_CHAR_POS ((unsigned char *) d) <= point)
  4514.           goto fail;
  4515.         break;
  4516. #if 0 /* not emacs19 */
  4517.     case at_dot:
  4518.           DEBUG_PRINT1 ("EXECUTING at_dot.\n");
  4519.       if (PTR_CHAR_POS ((unsigned char *) d) + 1 != point)
  4520.         goto fail;
  4521.       break;
  4522. #endif /* not emacs19 */
  4523.  
  4524.     case syntaxspec:
  4525.           DEBUG_PRINT2 ("EXECUTING syntaxspec %d.\n", mcnt);
  4526.       mcnt = *p++;
  4527.       goto matchsyntax;
  4528.  
  4529.         case wordchar:
  4530.           DEBUG_PRINT1 ("EXECUTING Emacs wordchar.\n");
  4531.       mcnt = (int) Sword;
  4532.         matchsyntax:
  4533.       PREFETCH ();
  4534.       /* Can't use *d++ here; SYNTAX may be an unsafe macro.  */
  4535.       d++;
  4536.       if (SYNTAX (d[-1]) != (enum syntaxcode) mcnt)
  4537.         goto fail;
  4538.           SET_REGS_MATCHED ();
  4539.       break;
  4540.  
  4541.     case notsyntaxspec:
  4542.           DEBUG_PRINT2 ("EXECUTING notsyntaxspec %d.\n", mcnt);
  4543.       mcnt = *p++;
  4544.       goto matchnotsyntax;
  4545.  
  4546.         case notwordchar:
  4547.           DEBUG_PRINT1 ("EXECUTING Emacs notwordchar.\n");
  4548.       mcnt = (int) Sword;
  4549.         matchnotsyntax:
  4550.       PREFETCH ();
  4551.       /* Can't use *d++ here; SYNTAX may be an unsafe macro.  */
  4552.       d++;
  4553.       if (SYNTAX (d[-1]) == (enum syntaxcode) mcnt)
  4554.         goto fail;
  4555.       SET_REGS_MATCHED ();
  4556.           break;
  4557.  
  4558. #else /* not emacs */
  4559.     case wordchar:
  4560.           DEBUG_PRINT1 ("EXECUTING non-Emacs wordchar.\n");
  4561.       PREFETCH ();
  4562.           if (!WORDCHAR_P (d))
  4563.             goto fail;
  4564.       SET_REGS_MATCHED ();
  4565.           d++;
  4566.       break;
  4567.       
  4568.     case notwordchar:
  4569.           DEBUG_PRINT1 ("EXECUTING non-Emacs notwordchar.\n");
  4570.       PREFETCH ();
  4571.       if (WORDCHAR_P (d))
  4572.             goto fail;
  4573.           SET_REGS_MATCHED ();
  4574.           d++;
  4575.       break;
  4576. #endif /* not emacs */
  4577.           
  4578.         default:
  4579.           abort ();
  4580.     }
  4581.       continue;  /* Successfully executed one pattern command; keep going.  */
  4582.  
  4583.  
  4584.     /* We goto here if a matching operation fails. */
  4585.     fail:
  4586.       if (!FAIL_STACK_EMPTY ())
  4587.     { /* A restart point is known.  Restore to that state.  */
  4588.           DEBUG_PRINT1 ("\nFAIL:\n");
  4589.           POP_FAILURE_POINT (d, p,
  4590.                              lowest_active_reg, highest_active_reg,
  4591.                              regstart, regend, reg_info);
  4592.  
  4593.           /* If this failure point is a dummy, try the next one.  */
  4594.           if (!p)
  4595.         goto fail;
  4596.  
  4597.           /* If we failed to the end of the pattern, don't examine *p.  */
  4598.       assert (p <= pend);
  4599.           if (p < pend)
  4600.             {
  4601.               boolean is_a_jump_n = false;
  4602.               
  4603.               /* If failed to a backwards jump that's part of a repetition
  4604.                  loop, need to pop this failure point and use the next one.  */
  4605.               switch ((re_opcode_t) *p)
  4606.                 {
  4607.                 case jump_n:
  4608.                   is_a_jump_n = true;
  4609.                 case maybe_pop_jump:
  4610.                 case pop_failure_jump:
  4611.                 case jump:
  4612.                   p1 = p + 1;
  4613.                   EXTRACT_NUMBER_AND_INCR (mcnt, p1);
  4614.                   p1 += mcnt;    
  4615.  
  4616.                   if ((is_a_jump_n && (re_opcode_t) *p1 == succeed_n)
  4617.                       || (!is_a_jump_n
  4618.                           && (re_opcode_t) *p1 == on_failure_jump))
  4619.                     goto fail;
  4620.                   break;
  4621.                 default:
  4622.                   /* do nothing */ ;
  4623.                 }
  4624.             }
  4625.  
  4626.           if (d >= string1 && d <= end1)
  4627.         dend = end_match_1;
  4628.         }
  4629.       else
  4630.         break;   /* Matching at this starting point really fails.  */
  4631.     } /* for (;;) */
  4632.  
  4633.   if (best_regs_set)
  4634.     goto restore_best_regs;
  4635.  
  4636.   FREE_VARIABLES ();
  4637.  
  4638.   return -1;                     /* Failure to match.  */
  4639. } /* re_match_2 */
  4640.  
  4641. /* Subroutine definitions for re_match_2.  */
  4642.  
  4643.  
  4644. /* We are passed P pointing to a register number after a start_memory.
  4645.    
  4646.    Return true if the pattern up to the corresponding stop_memory can
  4647.    match the empty string, and false otherwise.
  4648.    
  4649.    If we find the matching stop_memory, sets P to point to one past its number.
  4650.    Otherwise, sets P to an undefined byte less than or equal to END.
  4651.  
  4652.    We don't handle duplicates properly (yet).  */
  4653.  
  4654. static boolean
  4655. group_match_null_string_p (p, end, reg_info)
  4656.     unsigned char **p, *end;
  4657.     register_info_type *reg_info;
  4658. {
  4659.   int mcnt;
  4660.   /* Point to after the args to the start_memory.  */
  4661.   unsigned char *p1 = *p + 2;
  4662.   
  4663.   while (p1 < end)
  4664.     {
  4665.       /* Skip over opcodes that can match nothing, and return true or
  4666.      false, as appropriate, when we get to one that can't, or to the
  4667.          matching stop_memory.  */
  4668.       
  4669.       switch ((re_opcode_t) *p1)
  4670.         {
  4671.         /* Could be either a loop or a series of alternatives.  */
  4672.         case on_failure_jump:
  4673.           p1++;
  4674.           EXTRACT_NUMBER_AND_INCR (mcnt, p1);
  4675.           
  4676.           /* If the next operation is not a jump backwards in the
  4677.          pattern.  */
  4678.  
  4679.       if (mcnt >= 0)
  4680.         {
  4681.               /* Go through the on_failure_jumps of the alternatives,
  4682.                  seeing if any of the alternatives cannot match nothing.
  4683.                  The last alternative starts with only a jump,
  4684.                  whereas the rest start with on_failure_jump and end
  4685.                  with a jump, e.g., here is the pattern for `a|b|c':
  4686.  
  4687.                  /on_failure_jump/0/6/exactn/1/a/jump_past_alt/0/6
  4688.                  /on_failure_jump/0/6/exactn/1/b/jump_past_alt/0/3
  4689.                  /exactn/1/c                        
  4690.  
  4691.                  So, we have to first go through the first (n-1)
  4692.                  alternatives and then deal with the last one separately.  */
  4693.  
  4694.  
  4695.               /* Deal with the first (n-1) alternatives, which start
  4696.                  with an on_failure_jump (see above) that jumps to right
  4697.                  past a jump_past_alt.  */
  4698.  
  4699.               while ((re_opcode_t) p1[mcnt-3] == jump_past_alt)
  4700.                 {
  4701.                   /* `mcnt' holds how many bytes long the alternative
  4702.                      is, including the ending `jump_past_alt' and
  4703.                      its number.  */
  4704.  
  4705.                   if (!alt_match_null_string_p (p1, p1 + mcnt - 3, 
  4706.                                       reg_info))
  4707.                     return false;
  4708.  
  4709.                   /* Move to right after this alternative, including the
  4710.              jump_past_alt.  */
  4711.                   p1 += mcnt;    
  4712.  
  4713.                   /* Break if it's the beginning of an n-th alternative
  4714.                      that doesn't begin with an on_failure_jump.  */
  4715.                   if ((re_opcode_t) *p1 != on_failure_jump)
  4716.                     break;
  4717.         
  4718.           /* Still have to check that it's not an n-th
  4719.              alternative that starts with an on_failure_jump.  */
  4720.           p1++;
  4721.                   EXTRACT_NUMBER_AND_INCR (mcnt, p1);
  4722.                   if ((re_opcode_t) p1[mcnt-3] != jump_past_alt)
  4723.                     {
  4724.               /* Get to the beginning of the n-th alternative.  */
  4725.                       p1 -= 3;
  4726.                       break;
  4727.                     }
  4728.                 }
  4729.  
  4730.               /* Deal with the last alternative: go back and get number
  4731.                  of the `jump_past_alt' just before it.  `mcnt' contains
  4732.                  the length of the alternative.  */
  4733.               EXTRACT_NUMBER (mcnt, p1 - 2);
  4734.  
  4735.               if (!alt_match_null_string_p (p1, p1 + mcnt, reg_info))
  4736.                 return false;
  4737.  
  4738.               p1 += mcnt;    /* Get past the n-th alternative.  */
  4739.             } /* if mcnt > 0 */
  4740.           break;
  4741.  
  4742.           
  4743.         case stop_memory:
  4744.       assert (p1[1] == **p);
  4745.           *p = p1 + 2;
  4746.           return true;
  4747.  
  4748.         
  4749.         default: 
  4750.           if (!common_op_match_null_string_p (&p1, end, reg_info))
  4751.             return false;
  4752.         }
  4753.     } /* while p1 < end */
  4754.  
  4755.   return false;
  4756. } /* group_match_null_string_p */
  4757.  
  4758.  
  4759. /* Similar to group_match_null_string_p, but doesn't deal with alternatives:
  4760.    It expects P to be the first byte of a single alternative and END one
  4761.    byte past the last. The alternative can contain groups.  */
  4762.    
  4763. static boolean
  4764. alt_match_null_string_p (p, end, reg_info)
  4765.     unsigned char *p, *end;
  4766.     register_info_type *reg_info;
  4767. {
  4768.   int mcnt;
  4769.   unsigned char *p1 = p;
  4770.   
  4771.   while (p1 < end)
  4772.     {
  4773.       /* Skip over opcodes that can match nothing, and break when we get 
  4774.          to one that can't.  */
  4775.       
  4776.       switch ((re_opcode_t) *p1)
  4777.         {
  4778.     /* It's a loop.  */
  4779.         case on_failure_jump:
  4780.           p1++;
  4781.           EXTRACT_NUMBER_AND_INCR (mcnt, p1);
  4782.           p1 += mcnt;
  4783.           break;
  4784.           
  4785.     default: 
  4786.           if (!common_op_match_null_string_p (&p1, end, reg_info))
  4787.             return false;
  4788.         }
  4789.     }  /* while p1 < end */
  4790.  
  4791.   return true;
  4792. } /* alt_match_null_string_p */
  4793.  
  4794.  
  4795. /* Deals with the ops common to group_match_null_string_p and
  4796.    alt_match_null_string_p.  
  4797.    
  4798.    Sets P to one after the op and its arguments, if any.  */
  4799.  
  4800. static boolean
  4801. common_op_match_null_string_p (p, end, reg_info)
  4802.     unsigned char **p, *end;
  4803.     register_info_type *reg_info;
  4804. {
  4805.   int mcnt;
  4806.   boolean ret;
  4807.   int reg_no;
  4808.   unsigned char *p1 = *p;
  4809.  
  4810.   switch ((re_opcode_t) *p1++)
  4811.     {
  4812.     case no_op:
  4813.     case begline:
  4814.     case endline:
  4815.     case begbuf:
  4816.     case endbuf:
  4817.     case wordbeg:
  4818.     case wordend:
  4819.     case wordbound:
  4820.     case notwordbound:
  4821. #ifdef emacs
  4822.     case before_dot:
  4823.     case at_dot:
  4824.     case after_dot:
  4825. #endif
  4826.       break;
  4827.  
  4828.     case start_memory:
  4829.       reg_no = *p1;
  4830.       assert (reg_no > 0 && reg_no <= MAX_REGNUM);
  4831.       ret = group_match_null_string_p (&p1, end, reg_info);
  4832.       
  4833.       /* Have to set this here in case we're checking a group which
  4834.          contains a group and a back reference to it.  */
  4835.  
  4836.       if (REG_MATCH_NULL_STRING_P (reg_info[reg_no]) == MATCH_NULL_UNSET_VALUE)
  4837.         REG_MATCH_NULL_STRING_P (reg_info[reg_no]) = ret;
  4838.  
  4839.       if (!ret)
  4840.         return false;
  4841.       break;
  4842.           
  4843.     /* If this is an optimized succeed_n for zero times, make the jump.  */
  4844.     case jump:
  4845.       EXTRACT_NUMBER_AND_INCR (mcnt, p1);
  4846.       if (mcnt >= 0)
  4847.         p1 += mcnt;
  4848.       else
  4849.         return false;
  4850.       break;
  4851.  
  4852.     case succeed_n:
  4853.       /* Get to the number of times to succeed.  */
  4854.       p1 += 2;        
  4855.       EXTRACT_NUMBER_AND_INCR (mcnt, p1);
  4856.  
  4857.       if (mcnt == 0)
  4858.         {
  4859.           p1 -= 4;
  4860.           EXTRACT_NUMBER_AND_INCR (mcnt, p1);
  4861.           p1 += mcnt;
  4862.         }
  4863.       else
  4864.         return false;
  4865.       break;
  4866.  
  4867.     case duplicate: 
  4868.       if (!REG_MATCH_NULL_STRING_P (reg_info[*p1]))
  4869.         return false;
  4870.       break;
  4871.  
  4872.     case set_number_at:
  4873.       p1 += 4;
  4874.  
  4875.     default:
  4876.       /* All other opcodes mean we cannot match the empty string.  */
  4877.       return false;
  4878.   }
  4879.  
  4880.   *p = p1;
  4881.   return true;
  4882. } /* common_op_match_null_string_p */
  4883.  
  4884.  
  4885. /* Return zero if TRANSLATE[S1] and TRANSLATE[S2] are identical for LEN
  4886.    bytes; nonzero otherwise.  */
  4887.    
  4888. static int
  4889. bcmp_translate (s1, s2, len, translate)
  4890.      unsigned char *s1, *s2;
  4891.      register int len;
  4892.      char *translate;
  4893. {
  4894.   register unsigned char *p1 = s1, *p2 = s2;
  4895.   while (len)
  4896.     {
  4897.       if (translate[*p1++] != translate[*p2++]) return 1;
  4898.       len--;
  4899.     }
  4900.   return 0;
  4901. }
  4902.  
  4903. /* Entry points for GNU code.  */
  4904.  
  4905. /* re_compile_pattern is the GNU regular expression compiler: it
  4906.    compiles PATTERN (of length SIZE) and puts the result in BUFP.
  4907.    Returns 0 if the pattern was valid, otherwise an error string.
  4908.    
  4909.    Assumes the `allocated' (and perhaps `buffer') and `translate' fields
  4910.    are set in BUFP on entry.
  4911.    
  4912.    We call regex_compile to do the actual compilation.  */
  4913.  
  4914. const char *
  4915. re_compile_pattern (pattern, length, bufp)
  4916.      const char *pattern;
  4917.      int length;
  4918.      struct re_pattern_buffer *bufp;
  4919. {
  4920.   reg_errcode_t ret;
  4921.   
  4922.   /* GNU code is written to assume at least RE_NREGS registers will be set
  4923.      (and at least one extra will be -1).  */
  4924.   bufp->regs_allocated = REGS_UNALLOCATED;
  4925.   
  4926.   /* And GNU code determines whether or not to get register information
  4927.      by passing null for the REGS argument to re_match, etc., not by
  4928.      setting no_sub.  */
  4929.   bufp->no_sub = 0;
  4930.   
  4931.   /* Match anchors at newline.  */
  4932.   bufp->newline_anchor = 1;
  4933.   
  4934.   ret = regex_compile (pattern, length, re_syntax_options, bufp);
  4935.  
  4936.   return re_error_msg[(int) ret];
  4937. }     
  4938.  
  4939. /* Entry points compatible with 4.2 BSD regex library.  We don't define
  4940.    them if this is an Emacs or POSIX compilation.  */
  4941.  
  4942. #if !defined (emacs) && !defined (_POSIX_SOURCE)
  4943.  
  4944. /* BSD has one and only one pattern buffer.  */
  4945. static struct re_pattern_buffer re_comp_buf;
  4946.  
  4947. char *
  4948. re_comp (s)
  4949.     const char *s;
  4950. {
  4951.   reg_errcode_t ret;
  4952.   
  4953.   if (!s)
  4954.     {
  4955.       if (!re_comp_buf.buffer)
  4956.     return "No previous regular expression";
  4957.       return 0;
  4958.     }
  4959.  
  4960.   if (!re_comp_buf.buffer)
  4961.     {
  4962.       re_comp_buf.buffer = (unsigned char *) malloc (200);
  4963.       if (re_comp_buf.buffer == NULL)
  4964.         return "Memory exhausted";
  4965.       re_comp_buf.allocated = 200;
  4966.  
  4967.       re_comp_buf.fastmap = (char *) malloc (1 << BYTEWIDTH);
  4968.       if (re_comp_buf.fastmap == NULL)
  4969.     return "Memory exhausted";
  4970.     }
  4971.  
  4972.   /* Since `re_exec' always passes NULL for the `regs' argument, we
  4973.      don't need to initialize the pattern buffer fields which affect it.  */
  4974.  
  4975.   /* Match anchors at newlines.  */
  4976.   re_comp_buf.newline_anchor = 1;
  4977.  
  4978.   ret = regex_compile (s, strlen (s), re_syntax_options, &re_comp_buf);
  4979.   
  4980.   /* Yes, we're discarding `const' here.  */
  4981.   return (char *) re_error_msg[(int) ret];
  4982. }
  4983.  
  4984.  
  4985. int
  4986. re_exec (s)
  4987.     const char *s;
  4988. {
  4989.   const int len = strlen (s);
  4990.   return
  4991.     0 <= re_search (&re_comp_buf, s, len, 0, len, (struct re_registers *) 0);
  4992. }
  4993. #endif /* not emacs and not _POSIX_SOURCE */
  4994.  
  4995. /* POSIX.2 functions.  Don't define these for Emacs.  */
  4996.  
  4997. #ifndef emacs
  4998.  
  4999. /* regcomp takes a regular expression as a string and compiles it.
  5000.  
  5001.    PREG is a regex_t *.  We do not expect any fields to be initialized,
  5002.    since POSIX says we shouldn't.  Thus, we set
  5003.  
  5004.      `buffer' to the compiled pattern;
  5005.      `used' to the length of the compiled pattern;
  5006.      `syntax' to RE_SYNTAX_POSIX_EXTENDED if the
  5007.        REG_EXTENDED bit in CFLAGS is set; otherwise, to
  5008.        RE_SYNTAX_POSIX_BASIC;
  5009.      `newline_anchor' to REG_NEWLINE being set in CFLAGS;
  5010.      `fastmap' and `fastmap_accurate' to zero;
  5011.      `re_nsub' to the number of subexpressions in PATTERN.
  5012.  
  5013.    PATTERN is the address of the pattern string.
  5014.  
  5015.    CFLAGS is a series of bits which affect compilation.
  5016.  
  5017.      If REG_EXTENDED is set, we use POSIX extended syntax; otherwise, we
  5018.      use POSIX basic syntax.
  5019.  
  5020.      If REG_NEWLINE is set, then . and [^...] don't match newline.
  5021.      Also, regexec will try a match beginning after every newline.
  5022.  
  5023.      If REG_ICASE is set, then we considers upper- and lowercase
  5024.      versions of letters to be equivalent when matching.
  5025.  
  5026.      If REG_NOSUB is set, then when PREG is passed to regexec, that
  5027.      routine will report only success or failure, and nothing about the
  5028.      registers.
  5029.  
  5030.    It returns 0 if it succeeds, nonzero if it doesn't.  (See regex.h for
  5031.    the return codes and their meanings.)  */
  5032.  
  5033. int
  5034. regcomp (preg, pattern, cflags)
  5035.     regex_t *preg;
  5036.     const char *pattern; 
  5037.     int cflags;
  5038. {
  5039.   reg_errcode_t ret;
  5040.   unsigned syntax
  5041.     = (cflags & REG_EXTENDED) ?
  5042.       RE_SYNTAX_POSIX_EXTENDED : RE_SYNTAX_POSIX_BASIC;
  5043.  
  5044.   /* regex_compile will allocate the space for the compiled pattern.  */
  5045.   preg->buffer = 0;
  5046.   preg->allocated = 0;
  5047.   preg->used = 0;
  5048.   
  5049.   /* Don't bother to use a fastmap when searching.  This simplifies the
  5050.      REG_NEWLINE case: if we used a fastmap, we'd have to put all the
  5051.      characters after newlines into the fastmap.  This way, we just try
  5052.      every character.  */
  5053.   preg->fastmap = 0;
  5054.   
  5055.   if (cflags & REG_ICASE)
  5056.     {
  5057.       unsigned i;
  5058.       
  5059.       preg->translate = (char *) malloc (CHAR_SET_SIZE);
  5060.       if (preg->translate == NULL)
  5061.         return (int) REG_ESPACE;
  5062.  
  5063.       /* Map uppercase characters to corresponding lowercase ones.  */
  5064.       for (i = 0; i < CHAR_SET_SIZE; i++)
  5065.         preg->translate[i] = ISUPPER (i) ? tolower (i) : i;
  5066.     }
  5067.   else
  5068.     preg->translate = NULL;
  5069.  
  5070.   /* If REG_NEWLINE is set, newlines are treated differently.  */
  5071.   if (cflags & REG_NEWLINE)
  5072.     { /* REG_NEWLINE implies neither . nor [^...] match newline.  */
  5073.       syntax &= ~RE_DOT_NEWLINE;
  5074.       syntax |= RE_HAT_LISTS_NOT_NEWLINE;
  5075.       /* It also changes the matching behavior.  */
  5076.       preg->newline_anchor = 1;
  5077.     }
  5078.   else
  5079.     preg->newline_anchor = 0;
  5080.  
  5081.   preg->no_sub = !!(cflags & REG_NOSUB);
  5082.  
  5083.   /* POSIX says a null character in the pattern terminates it, so we 
  5084.      can use strlen here in compiling the pattern.  */
  5085.   ret = regex_compile (pattern, strlen (pattern), syntax, preg);
  5086.   
  5087.   /* POSIX doesn't distinguish between an unmatched open-group and an
  5088.      unmatched close-group: both are REG_EPAREN.  */
  5089.   if (ret == REG_ERPAREN) ret = REG_EPAREN;
  5090.   
  5091.   return (int) ret;
  5092. }
  5093.  
  5094.  
  5095. /* regexec searches for a given pattern, specified by PREG, in the
  5096.    string STRING.
  5097.    
  5098.    If NMATCH is zero or REG_NOSUB was set in the cflags argument to
  5099.    `regcomp', we ignore PMATCH.  Otherwise, we assume PMATCH has at
  5100.    least NMATCH elements, and we set them to the offsets of the
  5101.    corresponding matched substrings.
  5102.    
  5103.    EFLAGS specifies `execution flags' which affect matching: if
  5104.    REG_NOTBOL is set, then ^ does not match at the beginning of the
  5105.    string; if REG_NOTEOL is set, then $ does not match at the end.
  5106.    
  5107.    We return 0 if we find a match and REG_NOMATCH if not.  */
  5108.  
  5109. int
  5110. regexec (preg, string, nmatch, pmatch, eflags)
  5111.     const regex_t *preg;
  5112.     const char *string; 
  5113.     size_t nmatch; 
  5114.     regmatch_t pmatch[]; 
  5115.     int eflags;
  5116. {
  5117.   int ret;
  5118.   struct re_registers regs;
  5119.   regex_t private_preg;
  5120.   int len = strlen (string);
  5121.   boolean want_reg_info = !preg->no_sub && nmatch > 0;
  5122.  
  5123.   private_preg = *preg;
  5124.   
  5125.   private_preg.not_bol = !!(eflags & REG_NOTBOL);
  5126.   private_preg.not_eol = !!(eflags & REG_NOTEOL);
  5127.   
  5128.   /* The user has told us exactly how many registers to return
  5129.      information about, via `nmatch'.  We have to pass that on to the
  5130.      matching routines.  */
  5131.   private_preg.regs_allocated = REGS_FIXED;
  5132.   
  5133.   if (want_reg_info)
  5134.     {
  5135.       regs.num_regs = nmatch;
  5136.       regs.start = TALLOC (nmatch, regoff_t);
  5137.       regs.end = TALLOC (nmatch, regoff_t);
  5138.       if (regs.start == NULL || regs.end == NULL)
  5139.         return (int) REG_NOMATCH;
  5140.     }
  5141.  
  5142.   /* Perform the searching operation.  */
  5143.   ret = re_search (&private_preg, string, len,
  5144.                    /* start: */ 0, /* range: */ len,
  5145.                    want_reg_info ? ®s : (struct re_registers *) 0);
  5146.   
  5147.   /* Copy the register information to the POSIX structure.  */
  5148.   if (want_reg_info)
  5149.     {
  5150.       if (ret >= 0)
  5151.         {
  5152.           unsigned r;
  5153.  
  5154.           for (r = 0; r < nmatch; r++)
  5155.             {
  5156.               pmatch[r].rm_so = regs.start[r];
  5157.               pmatch[r].rm_eo = regs.end[r];
  5158.             }
  5159.         }
  5160.  
  5161.       /* If we needed the temporary register info, free the space now.  */
  5162.       free (regs.start);
  5163.       free (regs.end);
  5164.     }
  5165.  
  5166.   /* We want zero return to mean success, unlike `re_search'.  */
  5167.   return ret >= 0 ? (int) REG_NOERROR : (int) REG_NOMATCH;
  5168. }
  5169.  
  5170.  
  5171. /* Returns a message corresponding to an error code, ERRCODE, returned
  5172.    from either regcomp or regexec.   We don't use PREG here.  */
  5173.  
  5174. size_t
  5175. regerror (errcode, preg, errbuf, errbuf_size)
  5176.     int errcode;
  5177.     const regex_t *preg;
  5178.     char *errbuf;
  5179.     size_t errbuf_size;
  5180. {
  5181.   const char *msg;
  5182.   size_t msg_size;
  5183.  
  5184.   if (errcode < 0
  5185.       || errcode >= (sizeof (re_error_msg) / sizeof (re_error_msg[0])))
  5186.     /* Only error codes returned by the rest of the code should be passed 
  5187.        to this routine.  If we are given anything else, or if other regex
  5188.        code generates an invalid error code, then the program has a bug.
  5189.        Dump core so we can fix it.  */
  5190.     abort ();
  5191.  
  5192.   msg = re_error_msg[errcode];
  5193.  
  5194.   /* POSIX doesn't require that we do anything in this case, but why
  5195.      not be nice.  */
  5196.   if (! msg)
  5197.     msg = "Success";
  5198.  
  5199.   msg_size = strlen (msg) + 1; /* Includes the null.  */
  5200.   
  5201.   if (errbuf_size != 0)
  5202.     {
  5203.       if (msg_size > errbuf_size)
  5204.         {
  5205.           strncpy (errbuf, msg, errbuf_size - 1);
  5206.           errbuf[errbuf_size - 1] = 0;
  5207.         }
  5208.       else
  5209.         strcpy (errbuf, msg);
  5210.     }
  5211.  
  5212.   return msg_size;
  5213. }
  5214.  
  5215.  
  5216. /* Free dynamically allocated space used by PREG.  */
  5217.  
  5218. void
  5219. regfree (preg)
  5220.     regex_t *preg;
  5221. {
  5222.   if (preg->buffer != NULL)
  5223.     free (preg->buffer);
  5224.   preg->buffer = NULL;
  5225.   
  5226.   preg->allocated = 0;
  5227.   preg->used = 0;
  5228.  
  5229.   if (preg->fastmap != NULL)
  5230.     free (preg->fastmap);
  5231.   preg->fastmap = NULL;
  5232.   preg->fastmap_accurate = 0;
  5233.  
  5234.   if (preg->translate != NULL)
  5235.     free (preg->translate);
  5236.   preg->translate = NULL;
  5237. }
  5238.  
  5239. #endif /* not emacs  */
  5240.  
  5241. /*
  5242. Local variables:
  5243. make-backup-files: t
  5244. version-control: t
  5245. trim-versions-without-asking: nil
  5246. End:
  5247. */
  5248.